/* استایل‌های اضافی برای افزونه ArticleClub Profile Manager */

.acp-already-logged-in,
.acp-registration-closed,
.acp-login-required,
.acp-already-approved,
.acp-pending-notice,
.acp-no-members,
.acp-no-messages,
.acp-no-results {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    border: 2px dashed #dee2e6;
    margin: 30px 0;
}

.acp-already-logged-in p,
.acp-registration-closed p,
.acp-login-required p,
.acp-already-approved p,
.acp-pending-notice p,
.acp-no-members p,
.acp-no-messages p,
.acp-no-results p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.acp-complete-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.acp-complete-profile p {
    margin: 0;
    color: #666;
    flex: 1;
}

.acp-messages-preview,
.acp-members-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.acp-unread-count {
    background: var(--acp-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.button-small {
    padding: 8px 20px;
    font-size: 14px;
}

.button-primary {
    background: var(--acp-primary) !important;
    border-color: var(--acp-primary) !important;
}

.button-primary:hover {
    background: var(--acp-primary-dark) !important;
    border-color: var(--acp-primary-dark) !important;
}

.acp-directory-member-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eaeaea;
    transition: all 0.3s;
}

.acp-directory-member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.acp-member-details h3 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 18px;
}

/* انیمیشن‌ها */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.acp-form-wrapper,
.acp-verified-members,
.acp-member-directory,
.acp-user-messages,
.acp-user-dashboard {
    animation: fadeIn 0.5s ease-out;
}

/* لودینگ */
.acp-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* پاپ آپ‌ها */
.acp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.acp-modal-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}