.clp-tier-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    line-height: 1.5;
}

.clp-user-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.clp-user-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.clp-tier-name {
    font-size: 14px;
    font-weight: normal;
}

.clp-progress-section {
    margin-bottom: 20px;
    position: relative; /* برای موقعیت‌دهی آیکون سطح بعدی */
}

.clp-progress-bar-container {
    height: 25px;
    background: #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.clp-progress-bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 10px;
    color: #000000;
    font-weight: bold;
    font-size: 14px;
    transition: width 0.3s ease;
}

.clp-next-tier-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-46%);
    font-size: 20px;
    color: #333;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.8); /* برای خوانایی روی نوار */
}

.clp-progress-message {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

.clp-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.clp-info-box {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #eee;
}

.clp-info-label {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

.clp-info-value {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.clp-warning {
    color: #d63638;
    font-size: 12px;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

.clp-benefits-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.clp-benefits-current, .clp-benefits-next {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
}

.clp-benefits-current h3, .clp-benefits-next h3 {
    font-size: 14px;
    color: #333;
    margin: 0 0 10px;
}

.clp-benefits-current ul, .clp-benefits-next ul {
    list-style: disc inside;
    padding: 0;
    margin: 0;
}

.clp-benefits-current li, .clp-benefits-next li {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

.clp-footer-message {
    text-align: center;
    margin-top: 15px;
}

.clp-footer-message p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* واکنش‌گرایی برای موبایل */
@media (max-width: 768px) {
    .clp-tier-container {
        max-width: 100%;
        margin: 10px;
        padding: 15px;
    }

    .clp-user-header {
        flex-direction: row;
        gap: 8px;
    }

    .clp-user-name {
        font-size: 14px;
    }

    .clp-tier-name {
        font-size: 12px;
    }

    .clp-info-section {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .clp-info-box {
        padding: 8px;
    }

    .clp-info-label {
        font-size: 11px;
    }

    .clp-info-value {
        font-size: 13px;
    }

    .clp-benefits-section {
        grid-template-columns: 1fr;
    }

    .clp-next-tier-icon {
        right: 8px;
        font-size: 14px;
    }
}
