/**
 * Styles pour le mode plein écran du calendrier
 * 
 * Ce fichier contient les styles pour le mode plein écran du calendrier global
 * 
 * @package WPRentals-Child
 * @subpackage Account-Settings
 */

/* Styles pour le modal plein écran */
.calendar-fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: none;
    overflow: auto;
}

.calendar-fullscreen-modal.active {
    display: block;
}

/* En-tête du modal */
.calendar-fullscreen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
}

.calendar-fullscreen-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.calendar-fullscreen-close {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background-color: #f5f5f5;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.calendar-fullscreen-close:hover {
    background-color: #e0e0e0;
}

.calendar-fullscreen-close i {
    color: #333;
    font-size: 16px;
}

/* Conteneur du calendrier en plein écran */
.calendar-fullscreen-content {
    padding: 20px;
}

/* Ajustements pour le calendrier en plein écran */
.calendar-fullscreen-content .awayout-calendar-container {
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 0;
}

.calendar-fullscreen-content .awayout-calendar-table-container {
    max-height: calc(100vh - 150px);
}

.calendar-fullscreen-content .awayout-calendar-property-cell {
    width: 150px;
    max-width: 150px;
}

.calendar-fullscreen-content .awayout-calendar-property-info {
    max-width: 110px;
}

.calendar-fullscreen-content .awayout-calendar-property-title {
    max-width: 90px;
    font-size: 12px;
}

.calendar-fullscreen-content .awayout-calendar-day-header {
    min-width: 60px;
}

/* Bouton pour ouvrir le mode plein écran */
.awayout-calendar-fullscreen-btn {
    background-color: #f5f5f5;
    border: none;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s;
}

.awayout-calendar-fullscreen-btn:hover {
    background-color: #e0e0e0;
}
