/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;
    padding: 20px;
    margin-left: 230px; /* Adjusted for sidebar width */
}

footer {
    margin-top: auto;
}

/* Navigation */
.navbar-brand {
    font-weight: bold;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 56px; /* navbar height */
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
    overflow-y: auto; /* Enables scrolling if content is too tall */
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 56px); /* Subtract navbar height */
    padding-top: 1rem;
    overflow-x: hidden;
    overflow-y: auto;
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link.active {
    color: #007bff;
}

.sidebar .nav-link:hover {
    color: #0056b3;
}

.sidebar .nav-link i {
    margin-right: 0.5rem;
}

.sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
}

/* Cards */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: none;
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* Forms */
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    border-color: #80bdff;
}

/* Profile Images */
.profile-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.profile-image-lg {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.driver-thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.driver-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Listing Cards */
.listing-card {
    transition: transform 0.2s;
}

.listing-card:hover {
    transform: translateY(-5px);
}

/* Buttons */
.btn {
    border-radius: 0.25rem;
}

/* Badges */
.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
}

/* Alerts */
.alert {
    border-radius: 0.25rem;
}

/* Tables */
.table th {
    border-top: none;
    background-color: #f8f9fa;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.075);
}

/* Modals */
.modal-content {
    border: none;
    border-radius: 0.3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
}

/* Social Icons */
.social-icons a {
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #0056b3 !important;
}

/* User Info Section */
.user-info {
    border-radius: 0.25rem;
}

/* Login/Register Forms */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.auth-card {
    width: 100%;
    max-width: 500px;
}