.button-container {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    gap: 1rem;
    padding-top: 1rem;
}

.custom-btn {
    padding: 8px 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background-color: #e0e0e0;
    border-color: #bbb;
}

.custom-btn-primary {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.custom-btn-primary:hover {
    background-color: #0056b3;
     color: white;
    border-color: #0056b3;
}

/* Responsive styles */
@media (max-width: 768px) {
    .custom-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .custom-btn {
        width: 45%;
        padding: 10px 10px;
        /* font-size: 12px; */
        text-align: center;
    }
}