/* استایل دکمه‌های نمایش پروفایل - نسخه کوچک (آیکون فقط) */
:root {
    --brand-gold: #CBAF5E;
    --brand-gold-dark: #A88E4C;
    --brand-blue: #1B3050;
    --brand-blue-light: #254264;
}

.profile-view-btn {
    padding: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-blue));
    color: white;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(203, 175, 94, 0.35);
    min-width: 48px;
}

.profile-view-btn:hover {
    background: linear-gradient(135deg, var(--brand-gold-dark), var(--brand-blue-light));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 175, 94, 0.45);
    color: white;
}

.profile-view-btn i {
    font-size: 1.1rem;
}

/* استایل دکمه غیرفعال - نسخه کوچک */
.profile-disabled-btn {
    padding: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: not-allowed;
    transition: all 0.3s ease;
    min-width: 48px;
    opacity: 0.6;
}

.profile-disabled-btn:hover {
    background: var(--hover-bg);
}

.profile-disabled-btn i {
    font-size: 1.1rem;
}

/* استایل دکمه نمایش پروفایل - نسخه بزرگ با متن */
.profile-view-btn-lg {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-blue));
    color: white;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(203, 175, 94, 0.35);
    white-space: nowrap;
}

.profile-view-btn-lg:hover {
    background: linear-gradient(135deg, var(--brand-gold-dark), var(--brand-blue-light));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 175, 94, 0.45);
    color: white;
}

.profile-view-btn-lg i {
    font-size: 1.1rem;
}

/* استایل دکمه غیرفعال - نسخه بزرگ */
.profile-disabled-btn-lg {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: not-allowed;
    transition: all 0.3s ease;
    white-space: nowrap;
    opacity: 0.6;
}

.profile-disabled-btn-lg:hover {
    background: var(--hover-bg);
}

.profile-disabled-btn-lg i {
    font-size: 1.1rem;
}

/* استایل دکمه نمایش پروفایل - نسخه کوچک‌تر برای جداول */
.profile-view-btn-sm {
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-blue));
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(203, 175, 94, 0.25);
    font-size: 0.875rem;
}

.profile-view-btn-sm:hover {
    background: linear-gradient(135deg, var(--brand-gold-dark), var(--brand-blue-light));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(203, 175, 94, 0.35);
    color: white;
}

.profile-view-btn-sm i {
    font-size: 0.875rem;
}

/* استایل دکمه غیرفعال - نسخه کوچک‌تر */
.profile-disabled-btn-sm {
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: not-allowed;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    opacity: 0.6;
}

.profile-disabled-btn-sm:hover {
    background: var(--hover-bg);
}

.profile-disabled-btn-sm i {
    font-size: 0.875rem;
}
