/* Schedify Custom Styles */

:root {
    --primary-color: #1f77b4;
    --secondary-color: #6c757d;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero h1 {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
}

/* Definition Cards */
.definition {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.definition strong {
    color: #333;
}

/* Forms */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

/* Event Status Badges */
.badge-draft { background-color: #6c757d; }
.badge-collecting { background-color: #0d6efd; }
.badge-decided { background-color: #198754; }
.badge-completed { background-color: #20c997; }
.badge-cancelled { background-color: #dc3545; }

/* Dashboard Stats */
.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-card .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-card .label {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Voting Results */
.vote-bar {
    height: 30px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    margin: 5px 0;
}

.vote-bar .prefer { background-color: #198754; }
.vote-bar .okay { background-color: #ffc107; }
.vote-bar .no { background-color: #dc3545; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .definition {
        font-size: 1rem;
    }
}
