/* ============================================================
 * Komikhwa Social Login - Frontend Styles
 * ============================================================ */

.ksl-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.ksl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    box-sizing: border-box;
}

.ksl-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ksl-btn:active {
    transform: translateY(0);
}

.ksl-btn svg {
    flex-shrink: 0;
}

/* ===== Google Button ===== */
.ksl-btn-google {
    background: #ffffff;
    color: #333333;
    border-color: #dadce0;
}

.ksl-btn-google:hover {
    background: #f8f9fa;
    border-color: #c0c0c0;
    color: #333333;
}

/* ===== Discord Button ===== */
.ksl-btn-discord {
    background: #5865F2;
    color: #ffffff;
}

.ksl-btn-discord:hover {
    background: #4752c4;
    color: #ffffff;
}

/* ===== Warning ===== */
.ksl-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}

/* ===== Logged In ===== */
.ksl-logged-in {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}

.ksl-logged-in a {
    color: #155724;
    font-weight: 600;
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
    .ksl-social-buttons {
        max-width: 100%;
    }
}