/*
 * BravenSoft Frontend UI Style (My Account)
 * (Version 1.0.0)
 */
.stat-box {
    text-align: center;
    font-size: 30px;
}
/* 1. تحسين تبويبات لوحة تحكم المسوق */
.bs-aff-nav {
    border-bottom: 2px solid #e9e9e9 !important;
    margin-bottom: 25px !important;
}
.bs-aff-nav a {
    color: #777 !important;
    font-weight: 500 !important;
    font-size: 1.1em !important;
    padding: 10px 15px;
    text-decoration: none;
    display: inline-block;
    border-bottom: 2px solid transparent !important;
    margin-bottom: -2px; /* ليتطابق مع الخط السفلي */
    transition: all 0.3s ease !important;
}
/* مطابقة لون قالب WoodMart الأساسي */
.bs-aff-nav a.active {
    color: #c99947 !important; /* لون WoodMart الذهبي */
    border-bottom-color: #c99947 !important;
    font-weight: bold !important;
}
.bs-aff-nav a:hover {
    color: #111 !important;
}

/* 2. تحسين صناديق الإحصائيات (نظرة عامة) */
.bs-aff-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.bs-aff-stat-box {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.bs-aff-stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.bs-aff-stat-box h4 {
    color: #c99947; /* لون WoodMart الذهبي */
    font-size: 2em;
    margin: 0 0 5px 0;
}
.bs-aff-stat-box p {
    font-weight: 500;
    margin: 0;
    color: #777;
}

/* 3. تحسين صفحة الانضمام */
#bs-aff-frontend-dashboard .woocommerce-Button {
    background-color: #c99947 !important;
    color: #fff !important;
}
#bs-aff-frontend-dashboard .woocommerce-Button:hover {
    background-color: #111 !important;
}

/* 4. تحسين صناديق المواد الإبداعية */
.bs-aff-creative-box {
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 25px;
    padding: 15px;
}
.bs-aff-creative-preview {
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px dashed #ddd;
    text-align: center;
}
.bs-aff-creative-preview img {
    max-width: 100%;
    height: auto;
}
.bs-aff-creative-code {
    font-family: monospace;
    background: #222;
    color: #00ff00; /* لمسة احترافية (لون كود) */
    border: none;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    direction: ltr;
    text-align: left;
    padding: 10px;
}




