/* General Styles */
body {
    background-color: #f8f9fa;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #006bb7;
}

h1:focus, .valid.modified:not([type=checkbox]), .invalid, .validation-message {
    outline: none;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.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;
}

.text-center {
    text-align: center;
}

/* Navbar and Navigation */
.nav-scrollable {
    width: 260px;
    overflow-y: auto;
    overflow-x: hidden;
}

.nav-item {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-link {
    display: flex;
    align-items: center;
    height: 100%;
}

    .nav-link .bi {
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Buttons */
.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
    font-size: 16px;
    height: 36px;
    border-radius: 5px;
    border: none;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

.btn-custom {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .btn-custom:hover {
        background-color: #c82333;
    }

.btn-primary-custom {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .btn-primary-custom:hover {
        background-color: #0056b3;
    }

/* Forms */
.form-group {
    position: relative;
}

.form-control {
    height: 45px;
    border-radius: 5px;
    font-size: 16px;
    padding: 10px;
}

.form-label {
    font-weight: 500;
    color: #555;
}

.invalid-feedback {
    display: block;
    font-size: 12px;
}

/* Cards */
.card {
    border-radius: 10px;
    width: 30%;
    min-height: 160px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    margin-bottom: 1.25rem;
}

.app-list h3 {
    color: #007bff;
}

.profile-card, .login-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile-header img {
    width: 150px;
    height: 150px;
}

.profile-header h2 {
    margin-top: 20px;
}

.login-card {
    width: 100%;
    max-width: 400px;
}

.login-container {
    min-height: 100vh;
    padding-top: 20px; /* Add some top padding */
}

.login-logo {
    max-height: 80px;
    margin-bottom: 20px;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

/* Table */
.table-hover tbody tr:hover {
    background-color: #da8ee7;
    cursor: pointer;
}

/* Borders */
.border-success {
    border: 3px solid green;
}

.border-secondary {
    border: 3px solid #6c757d;
}

.border-light {
    border: 1px solid #dcdcdc;
}

.table-header {
    white-space: nowrap;
    text-align: center;
    border-right: 1px solid #ddd;
}

.table-cell {
    border-right: 1px solid #ddd;
}

.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.pagination-controls button {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #007bff;
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination-controls button:hover {
    background-color: #007bff;
    color: white;
}

.pagination-controls button.active {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

.pagination-controls button:disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    border-color: #ced4da;
}

.pagination-controls select {
    margin-right: 15px;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.pagination-controls label {
    margin-right: 5px;
    font-weight: bold;
}