/* ================================
   ROUTES PAGES COMMON STYLES
   File: css/routes.css
================================== */

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #333;
}

/* Page heading */
.page-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 10px;
}

.page-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* Cards */
.route-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.route-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.route-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #212529;
}

.route-card p {
    font-size: 15px;
    color: #555;
}

.route-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

/* List style */
.route-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.route-list li {
    background: #fff;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-weight: 500;
}

/* Buttons */
.route-btn {
    margin-top: 15px;
    width: 100%;
    border-radius: 30px;
    font-size: 14px;
    padding: 8px;
}

/* Info box */
.info-box {
    background: #e9f2ff;
    border-left: 5px solid #0d6efd;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
}

/* Responsive */
@media(max-width:768px) {
    .page-title {
        font-size: 24px;
    }

    .page-subtitle {
        font-size: 16px;
    }
}