﻿/* استایل‌های موجود شما */
/*header, footer {
    display: none !important;
}*/

/*.container {
    max-width: 800px;
    margin: auto;
}*/

.ad {
    background: #d9f3ff;
    border-radius: 15px;
    border: 2px solid #5FC9D6;
    box-shadow: 0 8px 10px #5FC9D6;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

    .ad:hover {
        box-shadow: 0 8px 20px #5FC9D6;
    }

    .ad img {
        width: 90px;
        height: 90px;
        border-radius: 10px;
        object-fit: cover;
    }

.ad-content {
    flex-grow: 1;
}

.ad-title {
    font-weight: 700;
    font-size: 1.1em;
    margin-bottom: 5px;
    color: #0f172a;
}

.ad-details {
    font-size: 0.9em;
    color: #475569;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 10px;
}

    .ad-details p {
        margin: 0;
        line-height: 1.6;
    }

.ad-price {
    margin-top: 10px;
    font-weight: 700;
    color: #1d4ed8;
    font-size: 1.1em;
}

.features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: -4px;
}

.feature-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    transition: 0.2s;
}

    .feature-icon:hover {
        background: #e2e8f0;
    }

    .feature-icon img {
        width: 14px;
        height: 14px;
    }

.feature-elevator {
    background: #f3e8ff;
    color: #9333ea;
}

.feature-parking {
    background: #e0f2fe;
    color: #2563eb;
}

.feature-document {
    background: #fef3c7;
    color: #d97706;
}

.feature-storage {
    background: #dcfce7;
    color: #15803d;
}

.feature-video {
    background: #fee2e2;
    color: #dc2626;
}

.video-logo {
    width: 22px;
    height: 22px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
}
/* استایل‌های جدید برای چک‌باکس و دکمه */
.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}

.select-all-container {
    margin-bottom: 20px;
}

.copy-button {
    background-color: #1d4ed8;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    width: 100%;
    max-width: 200px;
}

    .copy-button:hover {
        background-color: #1e40af;
    }

@@media (max-width: 600px) {
    .ad {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .ad img {
            width: 100%;
            height: 160px;
        }

    .ad-details {
        grid-template-columns: 1fr;
        text-align: right;
        width: 100%;
    }

    .ad-content {
        width: 100%;
    }

    .ad-price {
        text-align: center;
    }
}
