.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Buttons Styling */
.zoom-button {
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    border: none;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    max-width: 300px; /* Limit width on larger screens */
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Button Colors */
.zoom-button:first-child {
    background-color: #007bff;
}

.zoom-button:nth-child(2) {
    background-color: #28a745;
}

.zoom-button:hover {
    opacity: 0.9;
}

.zoom-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.zoom-button span {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-top: 5px;
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .button-container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .zoom-button {
        width: 100%;
        max-width: none;
    }
}
