/* General body styles */
body, button, input, textarea {
    font-family: Arial, sans-serif;
    background-color: #2b2a33;
    color: #fff;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: space-around;
}

/* Styling for form and list containers */
.form-container, .list-container {
    width: 50%;
    padding: 20px;
}

.form-container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}

    /* Styling for form divs to manage vertical spacing and alignment */
    .form-container div {
        margin-bottom: 15px;
    }

/* Label and input field styling */
label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"], input[type="number"], textarea {
    width: 80%;
    background-color: #42414d;
    border: 1px solid #ccc;
    color: #fff;
    padding: 8px;
    border-radius: 5px;
}

/* Button styling */
button {
    padding: 8px 16px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 5px;
    background-color: #42414d;
    border: none;
    color: white;
    transition: background-color 0.3s;
}

    button:hover {
        background-color: #1e0032;
    }

    button:active {
        background-color: #25003e;
    }

    button:last-child {
        margin-right: 0;
    }

/* List item and button container styling */
li {
    background-color: #2b2a33;
    border: 1px solid #42414d;
    padding: 10px;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
}

/* Ensuring buttons are aligned to the right and spaced properly */
.button-container {
    display: flex;
    gap: 10px; /* 10px space between buttons */
}

/* Popup Window Styles */
.popup-body {
    font-family: Arial, sans-serif;
    background-color: #2b2a33;
    color: #fff;
    padding: 20px;
    margin: 0;
}
