﻿/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header styles */
header {
    background-color: #343a40;
    color: #ffffff;
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
}

    .navbar-nav .nav-link:hover {
        color: #cccccc;
    }

/* Main content styles */
.container {
    max-width: 1200px;
}

.card {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    transition: transform 0.2s;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
}

/* Footer styles */
footer {
    background-color: #343a40;
    color: #ffffff;
}
