/* buttons.css */

.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 12px 0;
    width: 100%;
}

.button-group .btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 160px;
    justify-content: center;
    border: 1px solid transparent;
    box-sizing: border-box;
}

.button-group .btn-blue {
    background: #0078d4;
    color: #ffffff;
    border-color: #0078d4;
}

.button-group .btn-blue:hover {
    background: #005a9e;
    border-color: #005a9e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.35);
}

.button-group .btn span i {
    margin-right: 8px;
    padding-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 18px;
}

/* Tablet */
@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 16px 0;
    }

    .button-group .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 15px;
        min-width: unset;
        justify-content: center;
        margin: 0 auto;
    }

    .button-group .btn span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .button-group .btn span i {
        font-size: 17px;
        margin-right: 6px;
        padding-right: 8px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .button-group {
        gap: 14px;
        padding: 10px 0;
    }

    .button-group .btn {
        padding: 12px 20px;
        font-size: 14px;
        max-width: 260px;
        border-radius: 6px;
    }

    .button-group .btn span i {
        font-size: 15px;
        margin-right: 5px;
        padding-right: 6px;
    }
}