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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: #333;
}

.breadcrumb-nav {
    flex-grow: 1;
    margin-left: 30px;
}

.breadcrumb {
    list-style: none;
    display: flex;
    padding: 8px 15px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.breadcrumb li {
    margin-right: 5px;
    font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
    content: ">";
    margin-left: 5px;
    color: #666;
}

.breadcrumb a {
    text-decoration: none;
    color: #0066cc;
}

.breadcrumb span {
    color: #666;
}

.admin-section {
    margin: 40px 0;
    text-align: left;
}

.category-section {
    margin: 30px 0;
    text-align: center;
}

.category-section h2 {
    margin-bottom: 20px;
    color: #333;
}

.category-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-btn {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.cat-btn.active {
    background-color: #0066cc;
    color: white;
    border-color: #0066cc;
}

.cat-btn:hover {
    border-color: #0066cc;
}

.routes-section {
    margin: 40px 0;
    text-align: center;
}

.routes-section h2 {
    margin-bottom: 25px;
    color: #333;
    text-align: left;
}

.routes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.routes-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.routes-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.routes-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
}

.routes-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.routes-info {
    padding: 20px;
}

.routes-category {
    display: inline-block;
    font-size: 0.8rem;
    color: #666;
    background-color: #f0f0f0;
    padding: 3px 8px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.routes-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.routes-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.routes-title a:hover {
    color: #0066cc;
}

.routes-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    height: 60px;
    overflow: hidden;
}

.routes-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e53935;
    margin-bottom: 15px;
}

.routes-card-details {
    display: inline-flex;
    position: relative;
    background-color: rgb(255, 255, 255);
    max-width: 1000px;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
}

.routes-image-details {
    position: relative;
    max-height: 800px;
    max-width: 600px;
    overflow: hidden;
    display: flexbox;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
}

.routes-image-details img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.routes-info-details {
    padding: 20px;
    max-height: 800px;
    max-width: 400px;
}

#map { height: 600px; width: 800px; }

#LoginForm {
    /* Container styling */
    max-width: 400px;
    margin: 2rem auto;
    padding: 2.5rem;
    
    /* Light background */
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.05),
        0 2px 4px rgba(0, 0, 0, 0.02);
    
    /* Simple border */
    border: 1px solid #f0f0f0;
    
    /* Animation */
    animation: fadeIn 0.4s ease-out;
}

/* Form title */
#LoginForm h3 {
    text-align: center;
    color: #333333;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Input fields */
#LoginForm input[type="text"],
#LoginForm input[type="email"],
#LoginForm input[type="password"] {
    width: 100%;
    padding: 0.9rem 1rem;
    margin-bottom: 1.2rem;
    
    /* Light input styling */
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    
    /* Typography */
    font-size: 1rem;
    color: #444444;
    transition: all 0.2s ease;
}

/* Input hover effect */
#LoginForm input[type="text"]:hover,
#LoginForm input[type="email"]:hover,
#LoginForm input[type="password"]:hover {
    border-color: #cccccc;
    background: #ffffff;
}

/* Input focus effect */
#LoginForm input[type="text"]:focus,
#LoginForm input[type="email"]:focus,
#LoginForm input[type="password"]:focus {
    outline: none;
    border-color: #999999;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.02);
}

/* Labels */
#LoginForm label {
    display: block;
    margin-bottom: 0.4rem;
    color: #555555;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Submit button */
#LoginForm button[type="submit"] {
    width: 100%;
    padding: 0.9rem;
    margin-top: 0.5rem;
    
    /* Simple button styling */
    background: #333333;
    color: white;
    border: none;
    border-radius: 8px;
    
    /* Typography */
    font-size: 1rem;
    font-weight: 500;
    
    /* Interactive effects */
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Button hover effect */
#LoginForm button[type="submit"]:hover {
    background: #444444;
}

/* Button active effect */
#LoginForm button[type="submit"]:active {
    background: #222222;
    transform: scale(0.98);
}

/* Links inside form */
#LoginForm a {
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

#LoginForm a:hover {
    color: #333333;
    text-decoration: underline;
}

/* Error messages */
#LoginForm .error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: -0.8rem;
    margin-bottom: 0.8rem;
}

/* Success message */
#LoginForm .success-message {
    color: #28a745;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    text-align: center;
}

/* Simple animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Placeholder styling */
#LoginForm input::placeholder {
    color: #aaaaaa;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .breadcrumb-nav {
        margin-left: 0;
        width: 100%;
    }
    
    .routes-grid {
        gap: 15px;
    }
    
    .routes-card {
        width: 100%;
        max-width: 350px;
    }

    .routes-info-details {
    padding: 20px;
    max-height: 400px;
    max-width: 300px;
}

    #map { height: 400px; width: 450px; }
}

@media (max-width: 480px) {
    .category-buttons {
        flex-direction: column;
        align-items: center;
    }

    #LoginForm {
        margin: 1rem;
        padding: 1.5rem;
    }

    .routes-info-details {
    padding: 20px;
    max-height: 300px;
    max-width: 180px;
}

    #map { height: 300px; width: 250px; }
}