/* Hover-menüü põhistiilid */
.hovermenu-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    border-top: 3px solid #0b5931;
    display: none;
}

.hovermenu-content {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex; /* Võimaldab paigutust kahte sambasse */
}

/* Vasakpoolne veerg lehtede jaoks */
.hovermenu-items-column {
    width: 60%; /* Võtab 60% ruumist */
    padding-right: 30px;
}

/* Parempoolne veerg pildi jaoks */
.hovermenu-image-column {
    width: 40%; /* Võtab 40% ruumist */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hovermenu-image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Vertikaalne menüü (lehed üksteise all) */
.hovermenu-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block; /* Muudab flex paigutuse plokk-paigutuseks */
}

.hovermenu-items li {
    margin: 0 0 15px 0;
    padding: 0;
    list-style: none;
    width: 100%; /* Täislaius */
    margin-right: 0;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.hovermenu-items li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hovermenu-item-thumbnail {
    display: inline-block;
    vertical-align: middle;
    width: 45px;
    margin-right: 15px;
}

.hovermenu-item-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.hovermenu-items li a {
    color: #0b5931;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
}

/* Mobiilivaade */
@media (max-width: 768px) {
    .hovermenu-content {
        flex-direction: column; /* Veergude asemel üksteise all */
    }
    
    .hovermenu-items-column,
    .hovermenu-image-column {
        width: 100%;
        padding-right: 0;
    }
    
    .hovermenu-image-column {
        margin-top: 30px;
    }
}

/* Admin paneeli stiilid */
.hovermenu-admin-section {
    background: #fff;
    border: 1px solid #ccd0d4;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.hovermenu-field-row {
    margin-bottom: 15px;
}

.hovermenu-field-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.hovermenu-image-preview {
    max-width: 300px;
    margin-top: 10px;
    padding: 10px;
    background: #f8f8f8;
    border: 1px solid #e2e2e2;
}

.hovermenu-image-preview img {
    max-width: 100%;
    height: auto;
    display: block;
}