main > .container {
    padding: 70px 15px 20px;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.nav > li > form > button.logout:focus {
    outline: none;
}

.form-group {
    margin-bottom: 1rem;
}
body {
    /*background-image: url('');*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Georgia', serif;
}

.site-login .card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.site-login h1 {
    font-family: 'Georgia', serif;
    color: #333;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.site-login .form-control {
    border: 1px solid #333;
    border-radius: 4px;
}

.btn-primary {
    background-color: #003366;
    border: none;
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    font-weight: bold;
    width: 100%;
}

.btn-primary:hover {
    background-color: #002244;
}

.forgot-password {
    color: #333;
    font-size: 0.9rem;
}
.nav-tabs {
    border-bottom: 2px solid #007bff;
}

.nav-tabs .nav-item .nav-link {
    color: #007bff;
    font-weight: bold;
    border: 1px solid transparent;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
    padding: 10px 20px;
    text-transform: uppercase;
}

.nav-tabs .nav-item .nav-link.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff #007bff transparent;
}

.nav-tabs .nav-item .nav-link:hover {
    background-color: #f8f9fa;
    color: #0056b3;
}
.site-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.login-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.login-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.logo-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 200px;
    height: auto;
}

.login-title {
    color: #4052b6;
    text-align: center;
    font-size: 24px;
    margin-bottom: 2rem;
}

.custom-input {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 5px;
    margin-bottom: 1rem;
}

.forgot-password {
    color: #4052b6;
    text-decoration: none;
    font-size: 0.9rem;
}

.login-btn {
    background-color: #4052b6;
    border: none;
    padding: 12px;
    margin-top: 1.5rem;
    border-radius: 5px;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    background-color: #4052b6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-item span {
    font-size: 0.8rem;
    color: #666;
}

.social-links {
    margin-top: 2rem;
    text-align: center;
}

.social-links p {
    color: #666;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    color: #4052b6;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icon:hover {
    color: #2a3875;
}