/*
Theme Name: KARG PhotoClubHub
Author: KARG — Kevin Akers & Ricardo Grecco
Author URI: https://photoclubhub.com/
Description: PhotoClubHub WordPress theme (formerly MyPhotoClub). Maintained by KARG.
Version: 3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: photoclubhub
*/
.image-overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.9); /* Black background with opacity */
}

.overlay-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.close-overlay {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
body {
    padding-top:70px; /* Adjust this value according to the height of your navbar */
}
body.admin-bar .navbar.fixed-top {
    margin-top: 32px; /* Adjusts the navbar position to avoid overlap with the Admin Bar */
}

@media screen and (max-width: 782px) {
    body.admin-bar .navbar.fixed-top {
        margin-top: 46px; /* Adjusts the navbar position for smaller screens where the Admin Bar height is greater */
    }
}


/* Pink Styles */
.btn-pink {
    color: #fff;
    background-color: #e83e8c;
    border-color: #e83e8c;
}

.btn-pink:hover,
.btn-pink:focus {
    color: #fff;
    background-color: #d63384;
    border-color: #d63384;
}

.btn-pink:active,
.btn-pink.active {
    color: #fff;
    background-color: #c31d6f;
    border-color: #c31d6f;
}

.btn-pink.disabled,
.btn-pink:disabled {
    color: #fff;
    background-color: #e83e8c;
    border-color: #e83e8c;
    opacity: 0.65;
}

/* Purple Styles */
.btn-purple {
    color: #fff;
    background-color: #6f42c1;
    border-color: #6f42c1;
}

.btn-purple:hover,
.btn-purple:focus {
    color: #fff;
    background-color: #5a35a4;
    border-color: #5a35a4;
}

.btn-purple:active,
.btn-purple.active {
    color: #fff;
    background-color: #482681;
    border-color: #482681;
}

.btn-purple.disabled,
.btn-purple:disabled {
    color: #fff;
    background-color: #6f42c1;
    border-color: #6f42c1;
    opacity: 0.65;
}

/* Alerts */
.alert-pink {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-purple {
    color: #3c1f59;
    background-color: #e2d9f3;
    border-color: #d6c9f0;
}

/* Badges */
.badge-pink {
    color: #fff;
    background-color: #e83e8c;
}

.badge-purple {
    color: #fff;
    background-color: #6f42c1;
}

  
/* Basic styling for the modal overlay */
/* .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    position: relative;
} */

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
