/* Telegram Auth Styles */

.telegram-auth-container {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}

.telegram-auth-container h3 {
    margin-bottom: 15px;
    color: #333;
}

.telegram-auth-container p {
    margin-bottom: 20px;
    color: #666;
}

.telegram-auth-button {
    display: inline-block;
    padding: 12px 24px;
    background: #0088cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-bottom: 20px;
}

.telegram-auth-button:hover {
    background: #006699;
    color: white;
}

.telegram-icon:before {
    content: "📱";
    margin-right: 8px;
}

.telegram-auth-qr {
    margin: 20px 0;
}

.telegram-auth-qr img {
    max-width: 150px;
    height: auto;
}

#telegram-status-message {
    margin-top: 20px;
    font-style: italic;
    color: #888;
}

.telegram-auth-logged-in {
    text-align: center;
    padding: 20px;
    border: 1px solid #4CAF50;
    border-radius: 8px;
    background: #e8f5e8;
}

.telegram-auth-logged-in p {
    margin-bottom: 15px;
    color: #2e7d32;
}

.telegram-auth-error {
    text-align: center;
    padding: 20px;
    border: 1px solid #f44336;
    border-radius: 8px;
    background: #ffebee;
    color: #c62828;
}

.text-muted {
    color: #888 !important;
}