
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.vol-bata-container {
    font-family: 'Poppins', sans-serif;
    max-width: 500px;
    margin: auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background: #fff;
}

.title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}

.purple-dropdown {
    width: 100%;
    padding: 10px;
    background: #751B7F;
    color: white;
    border: none;
    border-radius: 8px;
    margin-bottom: 15px;
}

input[type='number'], input[readonly] {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-top: 5px;
}

.quantity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.yellow-cell {
    background: #E5C609;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.yellow-cell span {
    font-weight: 600;
    margin-bottom: 5px;
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 10px;
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.green-btn { background: #174711; }
.blue-btn { background: #0D2A63; }
.red-btn { background: #800202; }

.green-btn:hover { background: #216c1a; }
.blue-btn:hover { background: #153c85; }
.red-btn:hover { background: #a10b0b; }
