/* 
Theme Name: Hello Elementor Child Theme for AQC Website
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Metrix Internet
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/
.mi-image {
    overflow: hidden;
}
.tablepress thead tr > *,
.tablepress tfoot tr > * {
	background-color: #BF311A !important;
	color: #fff !important;
}
.tablepress thead tr:hover > *,
.tablepress tfoot tr:hover > * { 
    background-color: #54595F !important;
}
.tablepress thead .dt-orderable-asc .dt-column-order, .tablepress thead .dt-orderable-desc .dt-column-order, .tablepress thead .dt-ordering-asc .dt-column-order, .tablepress thead .dt-ordering-desc .dt-column-order {
    color: #fff!important;
}
.aqc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.aqc-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.aqc-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    margin: 5vh auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.aqc-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    padding: 0;
}

.aqc-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.aqc-modal-body {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
}

.aqc-modal-image-container {
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aqc-modal-image-container img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
}

.aqc-modal-info {
    padding: 30px;
    text-align: center;
}

#aqc-modal-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #333;
    text-align: center;
}

.aqc-modal-artist {
    margin: 0 0 20px 0;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.aqc-modal-description {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .aqc-modal-content {
        width: 95%;
        margin: 2.5vh auto;
        max-height: 95vh;
    }
    
    .aqc-modal-info {
        padding: 20px;
    }
    
    #aqc-modal-title {
        font-size: 22px;
    }
    
    .aqc-modal-description {
        font-size: 14px;
    }
}