/* Custom styles for SP247 */

body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card {
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body:not(.modal-open).card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 500;
}

/* Style for schedule day cards */
.schedule-day {
    height: 100%;
}

/* Style for activities in schedule */
.activity-item {
    border-left: 4px solid #0d6efd;
    margin-bottom: 10px;
    padding: 8px;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
}

.activity-item:hover {
    background-color: #e9ecef;
}

/* Custom colors for paid/free activities */
.badge.free {
    background-color: #198754;
}

.badge.paid {
    background-color: #ffc107;
    color: #000;
}

/* Custom pagination */
.pagination .page-link {
    color: #0d6efd;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Custom footer */
footer {
    margin-top: auto;
    padding: 20px 0;
    background-color: #343a40;
    color: #f8f9fa;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .schedule-container {
        overflow-x: auto;
    }
    
    .schedule-day {
        min-width: 280px;
    }
}
