/**
 * Madara Coin Modal Enhancer Styles
 */

/* Auth buttons container */
.mcme-auth-buttons {
    display: inline-flex;
    gap: 8px;
    margin-right: 10px;
}

/* Base button styles */
.mcme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    min-width: 80px;
}

/* Sign in button - Primary style */
.mcme-btn-signin {
    background-color: #ff6b6b;
    color: #ffffff !important;
}

.mcme-btn-signin:hover {
    background-color: #ee5a5a;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

/* Sign up button - Secondary style */
.mcme-btn-signup {
    background-color: #f8f9fa;
    color: #333333 !important;
    border: 1px solid #dee2e6;
}

.mcme-btn-signup:hover {
    background-color: #e9ecef;
    color: #333333 !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Buy button - Gold/Orange style for coins */
.mcme-btn-buy {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    color: #333333 !important;
    font-weight: 600;
    margin-right: 10px;
    box-shadow: 0 2px 4px rgba(247, 151, 30, 0.3);
}

.mcme-btn-buy:hover {
    background: linear-gradient(135deg, #e88a15 0%, #ecc200 100%);
    color: #333333 !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(247, 151, 30, 0.5);
}

.mcme-btn-buy:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(247, 151, 30, 0.3);
}

/* Modal footer layout adjustment */
#frm-wp-manga-buy-coin .modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .mcme-auth-buttons {
        width: 100%;
        justify-content: center;
        margin-right: 0;
        margin-bottom: 10px;
    }

    #frm-wp-manga-buy-coin .modal-footer {
        flex-direction: column;
    }

    .mcme-btn {
        flex: 1;
        min-width: 100px;
    }

    .mcme-btn-buy {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

