/* Custom styles for the customer portal */

body {
    background-color: #9FE2BF;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
    border-radius: 4px;
    margin-bottom: 2px;
}

.sidebar .nav-link:hover {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.sidebar .nav-link.active {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}

.sidebar .nav-link i {
    margin-right: 4px;
    color: #727272;
}

.sidebar .nav-link.active i {
    color: #0d6efd;
}

.sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
}

/* Adjust main content to account for sidebar */
main {
    padding-top: 1.5rem;
}

/* Card styles */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: white;
    width: 100%;
    margin-top: auto; /* Pushes footer to bottom */
}

/* Main content area adjustment */
main {
    padding-bottom: 60px; /* Add space above footer */
}

/* Sidebar height adjustment */
.sidebar {
    height: calc(100vh - 96px); /* Subtract header height */
    overflow-y: auto;
    background-color: red;
    border-right: 1px solid #dee2e6;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .sidebar {
        position: static;
        height: auto;
        padding-top: 0;
    }
    
    main {
        padding-top: 0;
    }
}