* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #1a1a1a;
    color: #f5deb3;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}


form {
    background-color: #3e2723;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
    margin-bottom: 20px;
    width: 300px;
    text-align: center;
}

input {
    width: 90%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: #2c2c2c;
    color: #f5deb3;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.774);

}

input:focus {
    background: white;
    color: black;

}

button {
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#submitButton {
    background: rgb(179, 179, 5);
    border: none;
    padding: 12px 18px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;

}

button:hover {
    background-color: #a0522d;
}

.list-title {
    color: #d2b48c;
    font-size: 24px;
    margin-bottom: 10px;
    text-decoration: underline;
}


#listAll {
    background-color: #2e2e2e;
    border: 1px solid #8b4513;
    padding: 15px;
    border-radius: 8px;
    width: 350px;
    min-height: 100px;
    min-width: 40%;
    width: auto;

}

.listOfUsersHeader {
    display: flex;
    justify-content: space-between;
    list-style: none;
    font-weight: bolder;
    font-size: 1.2rem;
    border-bottom: 2px dashed #8b4513;
    padding: 10px 0;

}
.listOfUsersHeader li {
   flex: 1;
   text-align: center;
   border-right: 2px dashed #8b4513;
   padding: 5px;
}

.listOfUsersHeader li:last-child {
    border-right: none;
}

#userDetails {
    margin-top: 10px;
    list-style: none;
    padding: 0;
}
#userDetails li {
    display: flex;
    justify-content: space-between;
    list-style: none;
    border-bottom: 1px solid #8b4513;
    padding: 8px 0;
    color: #f5deb3;
    
}

#userDetails li span {
    flex: 1;
    text-align: center;
    border-right: 2px dashed #8b4513;
    padding: 5px;
}

#userDetails li span:last-child {
    border-right: none;
}
.modal_form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
    margin-bottom: 20px;
    width: 300px;
    text-align: center;
}

.inputmodal {
    width: 90%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: #2c2c2c;
    color: #f5deb3;
    border: 1px dashed rgba(0, 0, 0, 0.699);

}
.modal {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 1;
    backdrop-filter: blur(2px);
}

.modal-content {
    background-color: #3e2723;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #f5deb3;
    width: 300px;
    box-shadow: 0 0 10px #000;
}

