/* Student Google Login Styles */

/* Locked Content Overlay */
.sgl-locked-content {
    background: #f8f9fa;
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    color: #555;
    margin: 1.5rem 0;
}

.sgl-lock-icon {
    color: #dc3545;
    margin-bottom: 1rem;
}

.sgl-lock-icon svg {
    width: 48px;
    height: 48px;
}

.sgl-locked-content h3 {
    margin-top: 0;
    color: #333;
}

/* Buttons */
.sgl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
    cursor: pointer;
    border: none;
}

.sgl-google-button {
    background-color: #4285F4;
    color: #fff;
    margin-top: 1rem;
}

.sgl-google-button:hover {
    background-color: #357ae8;
    color: #fff;
    text-decoration: none;
}

.sgl-logout-button {
    background-color: #f1f3f4;
    color: #3c4043;
    border: 1px solid #dadce0;
}

.sgl-logout-button:hover {
    background-color: #e8eaed;
    color: #202124;
}

/* Login Status Shortcode */
.sgl-login-status {
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 4px;
    display: inline-block;
}

.sgl-login-status.logged-in p {
    margin-bottom: 0.5rem;
}
