/* Global Styles for Chatty Bestie */
@import url('colors.css');
@import url('global.css');

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333;
}

/* Common animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Common emoji styling */
.emoji {
    font-size: 1.5em;
    margin: 0 5px;
}

/* Common button styles */
.btn {
    border: none;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: scale(0.98);
}

/* Loading indicator */
.loading {
    display: none;
    color: #4299e1;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

/* Status indicators */
.status-indicator {
    font-size: 0.9em;
    color: white !important;
    margin-top: 10px;
    text-align: center;
}

/* Override any success/error/other state colors for status */
.status-indicator.success,
.status-indicator.error,
.status-indicator.warning,
.status-indicator.info {
    color: white !important;
}

/* Responsive breakpoints */
@media (max-width: 600px) {
    body {
        font-size: 14px;
    }
    
    .emoji {
        font-size: 1.2em;
    }
}
