/* Google Modal Styling */
.google-panel {
    background: #202124;
    color: #e8eaed;
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24);
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: scale(0.95);
    transition: all 0.2s ease-in-out;
    border: 1px solid #3c4043;
}

#googleModal[aria-hidden="false"] .google-panel {
    transform: scale(1);
}

.google-header {
    padding: 36px 36px 12px;
    text-align: center;
}

.google-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #9aa0a6;
}

.google-logo-row img {
    width: 24px;
    height: 24px;
}

.google-header h2 {
    margin: 0 0 8px;
    font-weight: 400;
    font-size: 1.5rem;
    font-family: 'Google Sans', 'Roboto', sans-serif;
}

.google-header p {
    margin: 0;
    color: #e8eaed;
    font-size: 1rem;
}

.google-accounts {
    padding: 10px 0;
}

.google-account-item {
    display: flex;
    align-items: center;
    padding: 12px 36px;
    cursor: pointer;
    border-bottom: 1px solid #3c4043;
    transition: background 0.2s;
}

.google-account-item:last-child {
    border-bottom: none;
}

.google-account-item:hover {
    background: #303134;
}

.ga-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 16px;
    position: relative;
    overflow: hidden;
    background: #8e24aa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.ga-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-avatar {
    background: transparent;
    color: #9aa0a6;
}

.ga-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #202124;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ga-info {
    display: flex;
    flex-direction: column;
}

.ga-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: #e8eaed;
}

.ga-email {
    font-size: 0.85rem;
    color: #9aa0a6;
}

.google-footer {
    padding: 24px 36px 36px;
    font-size: 0.8rem;
    color: #9aa0a6;
    text-align: center;
    line-height: 1.5;
}

.google-footer a {
    color: #8ab4f8;
    text-decoration: none;
}

.google-footer a:hover {
    text-decoration: underline;
}
