﻿/* ============================================================
   استایل‌های تخصص‌ها (برای صفحه ثبت‌نام)
   ============================================================ */
.specialties-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.specialty-item {
    background: #fafffe;
    border: 2px solid #e8f5e9;
    border-radius: 25px;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    color: #4a7a4a;
    user-select: none;
    font-weight: 500;
}

    .specialty-item:hover {
        border-color: #a5d6a7;
        transform: translateY(-1px);
    }

    .specialty-item input[type="checkbox"] {
        display: none;
    }

    .specialty-item.active {
        background: #e8f5e9;
        border-color: #43a047;
        color: #1b5e20;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
    }
