/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.login-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

/* Google Sign-In Button */
.google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #dadce0;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #3c4043;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.google-btn:hover {
    background: #f8f9fa;
    border-color: #4285f4;
}

.google-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

/* Team Member Section */
.team-member-card {
    margin-bottom: 30px;
}

.team-member-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #667eea;
}

.team-member-email {
    color: #666;
    margin-bottom: 20px;
}

.logout-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.logout-btn:hover {
    background: #c82333;
}

.team-member-details {
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.team-member-details h3 {
    margin-bottom: 15px;
    color: #333;
}

.team-member-info-item {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.team-member-info-item:last-child {
    border-bottom: none;
}

.team-member-info-label {
    font-weight: 600;
    color: #555;
    display: inline-block;
    width: 150px;
}

.team-member-info-value {
    color: #333;
}

/* Messages */
.error-message,
.success-message {
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    font-weight: 500;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 600px) {
    .login-box {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .team-member-info-label {
        display: block;
        margin-bottom: 5px;
    }
}