/* Counter Widget Styles */
.counter-widget {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.counter-widget__title {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

.counter-widget__display {
    text-align: center;
    margin: 30px 0;
}

.counter-widget__label {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.counter-widget__value {
    font-size: 48px;
    font-weight: bold;
    color: #667eea;
    margin: 20px 0;
    transition: all 0.2s ease;
}

.counter-widget__value--positive {
    color: #667eea;
}

.counter-widget__value--negative {
    color: #f093fb;
}

.counter-widget__value--zero {
    color: #4facfe;
}

.counter-widget__controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.counter-widget__button {
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.counter-widget__button--increment {
    background: #667eea;
    color: white;
}

.counter-widget__button--decrement {
    background: #f093fb;
    color: white;
}

.counter-widget__button--reset {
    background: #4facfe;
    color: white;
}

.counter-widget__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.counter-widget__button:active {
    transform: translateY(0);
}

.counter-widget__info {
    margin-top: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    color: #666;
    font-size: 14px;
}
