﻿/*  */
.image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Aspect ratio for 16:9 */
    overflow: hidden;
}

    .image-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
}

.modal-actions button {
    margin: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#confirmLogout {
    background-color: red;
    color: white;
}

#cancelLogout {
    background-color: gray;
    color: white;
}

.tab-header {
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
}

    .tab-header li {
        flex: 1;
        text-align: center;
        padding: 10px 0;
        cursor: pointer;
        background-color: #eee;
        border: 1px solid #ddd;
        border-bottom: none;
        transition: 0.3s;
        font-weight: bold;
    }

        .tab-header li.active {
            background-color: #fff;
            border-top: 2px solid #74a044;
            border-left: 2px solid #74a044;
            border-right: 2px solid #74a044;
            color: #74a044;
        }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

.form-control {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
}

.contact_form input[type="submit"]:hover {
    background-color: #344767;
}

@@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}