* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    font-family: 'Arial', sans-serif;
    color: #333333;
    padding: 10px;
    overflow-y: auto;
}

/* Lineup Card Styles */
.lineup-card {
    width: 100%;
    max-width: 900px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
}

.card-header h2 {
    font-size: 2rem;
    color: #004085;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Days Grid */
.days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.day-column {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.day-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.day-column h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #0056b3;
}

.time-slot {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #495057;
}

.task {
    font-weight: bold;
    color: #007bff;
}

.card-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.goals-section,
.notes-section,
.inspiration-section {
    margin-bottom: 15px;
}

.goals-section h4,
.notes-section h4 {
    font-size: 1.2rem;
    color: #004085;
    margin-bottom: 10px;
}

.goals-section ul {
    list-style: none;
    padding: 0;
}

.goals-section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.goals-section input[type="checkbox"] {
    margin-right: 10px;
}

.notes-section p {
    font-size: 1rem;
    color: #495057;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.inspiration-section p {
    font-size: 1rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
    .lineup-card {
        padding: 15px;
    }

    .card-header h2 {
        font-size: 1.5rem;
    }

    .day-column h3 {
        font-size: 1.2rem;
    }
}