

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1B1A55;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    margin: 20px;
    height: 70px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.left-section {
    font-size: 24px;
    margin-top: 10px;
}

.right-section button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    height: 40px;
    font-family: inherit;
    cursor: pointer;
}

.right-section button:hover {
    background-color: #E3651D;
}

.container {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.125);
    padding: 20px;
    width: 550px;
    margin-top: 70px;
    margin-left: 450px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.container h1 {
    color: #333;
}

/* Todo List Section */
#todo-form {
    margin-bottom: 20px;
}

#todo-input {
    padding: 8px 10px;
    border: none;
    border-radius: 5px;
    width: 60%;
    margin-right: 10px;
    font-family: inherit;
}

#todo-input:focus {
    outline: none;
    border: 1px solid #4CAF50;
}

#todo-form button {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    font-family: inherit;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

#todo-form button:hover {
    background-color: #45a049;
}

/* Todo Item */
#todo-list {
    list-style-type: none;
    padding: 0;
    color: white;
}

#todo-list li {
    margin-bottom: 10px;
}

.delete-button {
    background-color: #4CAF50;
    padding: 8px 20px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-left: 10px;
    font-family: inherit;
}

.delete-button:hover {
    background-color: #d32f2f;
}

/* Status Section */
.status-section {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.125);
    padding: 20px;
    width: 400px;
    max-width: 90%;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.status-section h2 {
    color: #fff;
}

.status-section .close-button {
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.status-section .close-button:hover {
    background-color: #d32f2f;
}
