/* Wereshop Credits System CSS */

.wereshop-credits-widget {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f0f0f0;
    border-radius: 4px;
    font-weight: 600;
}

.wereshop-credits-widget .credits-label {
    color: #666;
}

.wereshop-credits-widget .credits-count {
    color: #0a7ea4;
    font-size: 1.2em;
    font-weight: 700;
}

.wereshop-credits-widget .buy-credits-btn {
    background: #0a7ea4;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
    transition: background 0.3s;
}

.wereshop-credits-widget .buy-credits-btn:hover {
    background: #0a6a8a;
}

.wereshop-credits-info {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.wereshop-credits-info h3 {
    margin-top: 0;
    color: #2c3e50;
}

.wereshop-credits-info p {
    margin: 8px 0;
}

.wereshop-credits-info .error {
    color: #d32f2f;
    font-weight: 600;
}

.wereshop-credits-info a {
    color: #0a7ea4;
    text-decoration: none;
}

.wereshop-credits-info a:hover {
    text-decoration: underline;
}
