body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f0f2f5;
}

h1 {
    text-align: center;
    padding: 25px;
    margin: 0;
    background: #8b0000;
    color: white;
    letter-spacing: 1px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.inputs {
    background: white;
    margin: 30px auto;
    width: 90%;
    max-width: 900px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.inputs input,
.inputs select {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 200px;
    background: #fafafa;
}

#saveBtn {
    padding: 10px 20px;
    background: #8b0000;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

#saveBtn:hover {
    background: #a30000;
}

#taskTable {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

#taskTable th {
    background: #ffcbcb;
    padding: 15px;
    text-align: left;
}

#taskTable td {
    padding: 12px;
    border-bottom: 1px solid #ffdede;
}

#taskTable tr:hover {
    background: #fff3f3;
}

.done {
    text-decoration: line-through;
    opacity: 0.6;
}

.delBtn {
    padding: 5px 12px;
    border: none;
    background: #d00000;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.2s;
}

.delBtn:hover {
    background: #ff0000;
    
    .confirmPopup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
z-index: 999;
}

.confirmBox {
background: white;
padding: 20px 30px;
border-radius: 10px;
text-align: center;
font-family: Arial, sans-serif;
box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.confirmBox button {
margin: 10px;
padding: 8px 20px;
font-size: 16px;
border: none;
border-radius: 6px;
cursor: pointer;
}

#yesBtn {
background-color: #d9534f;
color: white;
}

#noBtn {
background-color: #5bc0de;
color: white;
}
}