.left-menu {
    display: flex;
    flex-direction: row;
    background: linear-gradient(to right, #1b8ac2 0%, #1b8ac2 40%, #f8f9fa 70%, #f8f9fa 100%);
    width: 100%;
    height: 3em;
    margin: 2em 0 0 -0.3em;
    padding: 0;
    align-items: center;
}

li ul {
    display: none;
}

ul {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
}

ul li {
    display: grid;
    position: relative;
}

ul li a {
    display: flex;
    padding: 0.9em;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;

}

ul li a:hover {
    background: #2c3e50;
}

.menu-link1 {
    width: auto;
}

.menu-level1 li:hover > .menu-level2 {
    display: flex;
    flex-direction: column;
    background-color: #1b8ac2;
    position: absolute;
    top: 100%;
    left: 0;
    width: fit-content;
    min-width: 150px;
}

li:hover li { float: none; }

li:hover li a:hover { background: #2c3e50; }

/* Confirmation Modal Styles */
.confirmation-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.confirmation-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-title {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-message {
    margin: 0 0 1.5rem 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.modal-actions .btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.modal-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal-actions .close-modal {
    background-color: #6c757d;
    color: white;
}

.modal-actions .close-modal:hover {
    background-color: #5a6268;
}

.modal-actions .confirm-modal {
    background-color: #1b8ac2;
    color: white;
}

.modal-actions .confirm-modal:hover {
    background-color: #156a96;
}