/* Dashboard Layout */
.dashboard-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar - Fixed width and position */
.sidebar {
    width: 220px;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
    padding: 1rem;
    overflow-y: auto;
    z-index: 1000;
}

/* Main Content - Takes remaining space */
.main-content {
    flex: 1; /* Must match sidebar width */
    padding: 1.5rem;
    min-height: 100vh;
}

/* Navigation Styles */
.nav {
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-item {
    width: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 0.25rem;
    margin-bottom: 0.2rem;
}

    .nav-link:hover,
    .nav-link.active {
        color: #0d6efd;
        background-color: rgba(13, 110, 253, 0.1);
    }

    .nav-link i {
        margin-right: 0.5rem;
        width: 1.25em;
        text-align: center;
        color: #727272;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        position: relative;
        width: 100%;
        min-height: auto;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .dashboard-container {
        flex-direction: column;
    }
}


/* Card styling */
.card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem 0.5rem 0 0 !important;
}

/* List group items */
.list-group-item {
    border-left: none;
    border-right: none;
    padding: 1rem 1.25rem;
}

    .list-group-item:first-child {
        border-top: none;
    }

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .sidebar {
        position: static;
        height: auto;
        padding-top: 0;
    }

    main {
        padding-top: 1rem;
    }
}
.register-page {
    background: linear-gradient(135deg, #0066cc 0%, #00ccff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.register-box {
    width: 500px;
    margin: 0 auto;
}

.register-logo a {
    color: #fff;
    font-size: 28px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.card-header {
    border-bottom: none;
    padding: 1.5rem 1rem;
}

.input-group-text {
    background-color: #f8f9fa;
}

.btn-primary {
    background-color: #0066cc;
    border-color: #005bb7;
}

.btn-primary:hover {
    background-color: #005bb7;
}
html {
  font-size: 14px;
}
body {
    text-align: left !important;
}

.container {
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}