/* Amenities Modal Styles */
.dt-amenities-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-family: inherit;
}

.dt-amenities-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.dt-amenities-modal .dt-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.dt-amenities-modal .dt-modal-content {
    position: relative;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dt-amenities-modal .dt-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #e0e0e0;
    gap: 16px;
}

.dt-amenities-modal .dt-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.dt-amenities-modal .dt-modal-header button {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.dt-amenities-modal .dt-modal-header button:hover {
    background: #f5f5f5;
    color: #000;
}

.dt-amenities-modal .dt-modal-body {
    padding: 24px;
}

.dt-amenities-modal .dt-amenities-full {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dt-amenities-modal .dt-amenity {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: left;
    font-size: 14px;
    color: #555;
    transition: background 0.2s ease, transform 0.2s ease;
}

.dt-amenities-modal .dt-amenity:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.dt-amenities-modal .dt-amenity .dt-amenity-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4a4f3d;
    flex-shrink: 0;
}

.dt-amenities-modal .dt-amenity .dt-amenity-icon svg {
    width: 100%;
    height: 100%;
}

.dt-amenities-modal .dt-amenity .dt-amenity-name {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .dt-amenities-modal .dt-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .dt-amenities-modal .dt-modal-header {
        padding: 16px;
    }

    .dt-amenities-modal .dt-modal-body {
        padding: 16px;
    }

    .dt-amenities-modal .dt-amenities-full {
        gap: 10px;
    }

    .dt-amenities-modal .dt-amenity {
        padding: 12px 14px;
        font-size: 12px;
        gap: 10px;
    }

    .dt-amenities-modal .dt-amenity .dt-amenity-icon {
        width: 28px;
        height: 28px;
    }
}
