﻿ .counter-container {
            text-align: center;
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        #valor {
			width:38px;
			text-align:center;
            font-size: 28px;
            margin: 10px 0;
            font-weight: bold;
        }

        .botones {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .btn-circular {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: solid 1px black;
            background-color: white;
            color: black;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.1s;
			margin: 15px 0;
        }

        .btn-circular:hover {
            background-color: #333;
			color:white;
        }

        .btn-circular:active {
            transform: scale(0.95);
        }