:root {
    /* Основной шрифт для всего приложения */
    --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Применяем шрифт глобально */
* {
    font-family: var(--font-primary);
}

/* Подключаем шрифт Inter для всех весов */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.login-options {
    margin: 20px 0;
    text-align: center;
}

.google-signin-btn {
    display: none;
}

.or-divider {
    display: none;
}

.view-only-text {
    color: #666;
    font-size: 14px;
}

#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.notification {
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-bottom: 10px;
    padding: 15px;
    min-width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.notification.success {
    border-left: 4px solid #4CAF50;
}

.notification.error {
    border-left: 4px solid #f44336;
}

.notification.info {
    border-left: 4px solid #2196F3;
}

.notification-content {
    flex-grow: 1;
}

.notification-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 20px;
    padding: 0 5px;
}

.notification-close:hover {
    color: #333;
}

.login-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.regular-login-btn {
    padding: 10px 20px;
    background: #4285f4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.view-only-btn {
    padding: 10px 20px;
    background: #808080;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.regular-login-btn:hover {
    background: #3367d6;
}

.view-only-btn:hover {
    background: #666666;
} 