/**
 * Editor Styles and Frontend Content Styles
 */

/* Button Group Container */
.button-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 40px 0px 56px 0px;
}

/* Button Styles */
.button-download,
.button-href {
    display: inline-block;
    padding: 17.5px 48px;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.button-download {
    background-color: transparent;
    color: #005C89;
    border: 2px solid #005C89;
}

.button-href {
    background-color: #EA4044;
    color: white;
    border: 2px solid #EA4044;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .button-group {
        flex-direction: row;
        gap: 12px;
        margin: 24px 0px;
        width: 100%;
    }

    .button-download,
    .button-href {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 475px) {
    .button-group {
        flex-direction: column;
        gap: 16px;
        margin: 24px 0px;
        width: 100%;
    }

    .button-download,
    .button-href {
        width: -webkit-fill-available;
        text-align: center;
    }
}