*{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    transition: 0.3s;
}

body{
    background-color: rgb(61, 65, 75);
}
.contener{
    margin-top: 15%;
}
form{
    display: flex;
    flex-direction: column;
    padding: 0 20%;
    gap: 10px;
}
input{
    border-radius: 5px;
    border: none;
    background-color: rgb(35, 37, 42);
    outline: none;
    color: white;
    text-align: center;
    font-size: 18px;
}
input:focus{
    transform: scale(1.1);
}
button{
    color: white;
    background-color: rgb(35, 37, 42);
    border-radius: 5px;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 0;
}
button:hover{
    transform: scale(1.1);
}
label{
    text-align: center;
    color: white;
}
.show{
    background-color: rgb(35, 37, 42);
    width: 60%;
    margin: auto;
    text-align: center;
    margin-top: 2%;
    height: fit-content;
    padding: 1% 0;
    border-radius: 10px;
}
h1{
    color: rgb(174, 171, 171);
    font-size: 20px;
}
h2{
    padding-top: 7%;
    color: white;
    background-color: rgb(75, 79, 88);
    width: fit-content;
    margin: auto;
    padding:2% 5%;
    margin-bottom: 2%;
    border-radius: 10px;
    cursor: default;
}
h2:hover{
    background-color: rgb(90, 95, 110);
    transform: scale(1.05);
}
.task{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(75, 79, 88);
    width: 60%;
    margin: 10px auto;
    padding: 10px 15px;
    border-radius: 10px;
}

.task span{
    color: white;
    font-size: 18px;
    margin: auto;
}

.delete-btn{
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.delete-btn:hover{
    transform: scale(1.3);
}
.task {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(75, 79, 88);
    width: 60%;
    margin: 10px auto;
    padding: 10px 15px;
    border-radius: 10px;

    /* الشادو العادي */
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: 0.3s, box-shadow 0.3s;
}

.task:hover {
    /* Neon Shadow */
    box-shadow: 0 0 10px #343434, 0 0 20px #343434, 0 0 30px #343434;
    transform: translateY(-2px);
}
.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;

    text-shadow: 1px 1px 2px black;
    transition: 0.2s, text-shadow 0.2s;
}

.delete-btn:hover {
    transform: scale(1.3);
    text-shadow: 0 0 5px #ff4d6d, 0 0 10px #ff4d6d, 0 0 15px #ff4d6d;
}
input {
    border-radius: 5px;
    border: none;
    background-color: rgb(35, 37, 42);
    outline: none;
    color: white;
    text-align: center;
    font-size: 18px;
    transition: 0.3s, box-shadow 0.3s;
}

input:focus {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}
#btn {
    color: white;
    background-color: rgb(35, 37, 42);
    border-radius: 5px;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 0;
    font-size: 16px;
    transition: 0.3s, box-shadow 0.3s;
}

#btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}
#removeAll {
    color: white;
    background-color: rgb(35, 37, 42);
    border-radius: 5px;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 0;
    font-size: 16px;
    transition: 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

#removeAll:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}
.show {
    background-color: rgb(35, 37, 42);
    width: 60%;
    margin: auto;
    text-align: center;
    margin-top: 5%;
    height: fit-content;
    padding: 1% 0;
    border-radius: 10px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}



