<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.with-padding {
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header et contrÃ´les */
header {
    text-align: center;
    margin-bottom: 20px;
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.view-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.view-controls button {
    padding: 8px 16px;
    margin: 0 5px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.view-controls button.active {
    background: #9ac000;
    color: white;
    border-color: #8ab000;
}

.filter-container {
    margin-right: 1rem;
}

.filter-select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    min-width: 200px;
    cursor: pointer;
}

.filter-select:hover {
    border-color: #9ac000;
}

.filter-select:focus {
    outline: none;
    border-color: #9ac000;
    box-shadow: 0 0 0 2px rgba(154, 192, 0, 0.2);
}

.navigation {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navigation button {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 4px;
}

.calendar-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Header styles */
.agenda-header {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center!important;
}

.agenda-header h1,
.agenda-header h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4em;
    text-align: center;
}

.agenda-header p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    text-align: left;
}

.space-info-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 768px) {
    .space-info-container {
        flex-direction: column;
    }
}

/* Calendrier */
#calendar {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 5px;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.calendar-day {
    min-height: 100px;
    border: 1px solid #eee;
    padding: 5px;
    position: relative;
    width: 100%;
}

.calendar-day.today {
    border: 2px solid #9ac000;
    background-color: #f8f8f8;
    padding: 4px;
}

.calendar-day.other-month {
    background-color: #f5f5f5;
    color: #999;
}

.calendar-day.past-day {
    background-color: #f0f0f0;
    color: #999;
}

/* Ã‰vÃ©nements */
.event {
    background-color: #9ac000;
    color: white;
    padding: 4px 6px;
    margin: 2px 0;
    border-radius: 3px;
    font-size: 0.75em;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.2;
    min-height: 24px;
}

.event-full {
    color: #dc3545;
    font-weight: bold;
}

.event-full .error-message {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-full .error-message i {
    font-size: 1.2em;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-height: 80vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-body {
    padding: 30px;
    flex: 1;
    overflow-y: auto;
}

.modal-header {
    position: relative;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.modal-header h2 {
    color: white;
    margin: 0;
    padding-right: 30px;
}

.close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close:hover {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
}

.modal-info {
    padding: 0 20px;
    margin-top: 25px;
}

.inscription-form-container {
    padding: 20px;
}

.terms-checkbox-container {
    margin: 15px 0;
    font-size: 0.9em;
    line-height: 1.4;
}

.terms-checkbox-container input[type="checkbox"] {
    margin-right: 8px;
}

.terms-checkbox-container a {
    color: #9ac000;
    text-decoration: none;
}

.terms-checkbox-container a:hover {
    text-decoration: underline;
}

.map-container {
    display: none;
    width: 400px;
    height: 300px;
    margin: 1rem 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.map-container.show {
    display: block;
    opacity: 1;
}

#map {
    width: 100%;
    height: calc(100vh - 140px);
    border-radius: 4px;
    margin-top: 0;
}

.modal-info {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.modal-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555;
}

.modal-info-item i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    margin-top: 3px;
}

.maison-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.maison-link {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 2px 0;
}

.maison-link:hover {
    opacity: 0.8;
}

.modal-info-item .map-toggle {
    cursor: pointer;
    font-size: 0.9em;
    color: #666;
}

.modal-info-item .map-toggle:hover {
    color: #333;
}

/* Map styles */
.map-wrapper {
    width: 100%;
    height: 400px;
    margin: 15px 0;
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Suppression des styles de la carte qui ont Ã©tÃ© dÃ©placÃ©s vers map-modal.css */

/* Contenu de la modal */
#modalTitle {
    font-size: 1.8em;
    color: #333;
    margin: 0 0 20px 0;
    padding-right: 40px;
    line-height: 1.3;
}

.modal-date-time {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 1.1em;
}

.modal-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.modal-icon::before {
    font-size: 1.2em;
    color: #9ac000;
}

.date-icon::before {
    content: "ðŸ“…";
}

.time-icon::before {
    content: "â°";
}

.location-icon::before {
    content: "ðŸ“";
}

#modalDescription {
    color: #444;
    line-height: 1.6;
    font-size: 1.1em;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 5px;
}

/* Ajout d'icÃ´nes pour la date et l'heure */

/* Responsive Design */
@media screen and (max-width: 768px) {
    .controls {
        flex-direction: column;
        gap: 15px;
    }

    .view-controls {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .filter-container {
        width: 100%;
    }

    .filter-select {
        width: 100%;
    }

    .navigation {
        width: 100%;
        justify-content: space-between;
    }

    #currentDate {
        font-size: 1.2em;
    }

    .calendar-grid {
        font-size: 0.9em;
    }

    .calendar-header {
        font-size: 0.9em;
    }

    .calendar-cell {
        min-height: 80px;
        padding: 5px;
    }

    .event {
        font-size: 0.8em;
        padding: 3px 5px;
        margin: 2px 0;
    }

    .event-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .event-time {
        font-size: 0.9em;
    }

    .modal-content {
        margin: 5% auto;
        max-height: 90vh;
    }

    .map-container.show {
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    .calendar-grid {
        font-size: 0.8em;
    }

    .calendar-cell {
        min-height: 60px;
        padding: 3px;
    }

    .event {
        font-size: 0.75em;
        padding: 2px 4px;
    }

    .modal-content {
        width: 95%;
        margin: 2% auto;
    }

    .modal-body {
        padding: 20px;
    }

    .map-container {
        width: calc(100% - 25px);
        margin-left: 25px;
    }

    .map-container.show {
        height: 200px;
    }
}

/* AmÃ©lioration du touch sur mobile */
@media (hover: none) {
    .event {
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }

    .event:active {
        opacity: 0.7;
    }

    button {
        min-height: 44px; /* Pour une meilleure zone de touch */
        min-width: 44px;
    }

    .close {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Fix pour les orientations */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .modal-content {
        margin: 2% auto;
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Styles pour le formulaire d'inscription */
.inscription-form-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.inscription-form-container h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

/* Styles pour l'affichage des places disponibles */
.places-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px 15px;
    background-color: #f5f7fa;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
}

.places-info i {
    color: #9ac000;
    font-size: 16px;
}

.places-info.complet {
    color: #ff0000;
    font-weight: bold;
}

.places-info.acces-libre {
    color: #9ac000;
    font-weight: bold;
}

.inscription-form {
    display: grid;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: #9ac000;
    box-shadow: 0 0 0 2px rgba(154, 192, 0, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 13px;
    line-height: 1.4;
}

.submit-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.submit-btn:hover {
    opacity: 0.9;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .inscription-form {
        grid-template-columns: 1fr;
    }
}

/* Vue en liste */
.list-view {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
}

.event-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 4px solid transparent;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.event-card-title {
    font-size: 1.4em;
    color: #333;
    margin: 0;
}

.event-card-date {
    color: #666;
    font-size: 0.9em;
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.event-card-content {
    margin: 1rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.event-card-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.event-card-info i {
    color: #95c11f;
    width: 16px;
    text-align: center;
}

.event-card-description {
    color: #444;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-card-maison {
    color: #666;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-inscription {
    background-color: #95c11f;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-inscription:hover {
    filter: brightness(90%);
}

.no-events {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #666;
    font-size: 1.1em;
}

/* Calendar and List View Layout */
.calendar-view {
    margin-bottom: 2rem;
}

.section-title {
    margin: 2rem 0 1rem;
    padding: 0.5rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    color: #333;
}

/* List View Styles */
.list-view {
    margin-top: 1rem;
}

.no-events {
    padding: 1rem;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    color: #666;
}

.event-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    padding: 1rem;
    transition: transform 0.2s ease;
    cursor: pointer;
    border-left: 4px solid transparent;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.event-card-title {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.event-card-date {
    color: #666;
    font-size: 0.9rem;
}

.event-card-content {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.event-card-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.event-card-description {
    color: #444;
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.event-card-footer {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.btn-inscription {
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: opacity 0.2s ease;
}

.btn-inscription:hover {
    opacity: 0.9;
}





/* Styles pour les dÃ©tails de l'espace dans l'agenda */
.space-details {
    text-align: left;
}

.space-details .space-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0;
    text-align: left;
}

.space-details .detail-text {
    text-align: left;
}
</pre></body></html>