body {
    height: 100vh;
    width: 100vw;
}

.container-fluid {
    margin-top: 90px;
}

.container {
    margin-top: 90px;
}

.card-header {
    margin-top: 60px;
}

/*index.html*/
#hero {
    background-color: #f1f1f1;
    padding: 50px;
    text-align: center;
}

.hero-heading {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.hero-subheading {
    font-size: 20px;
    color: #666;
}

.btn-primary-demo {
    margin-top: 10px;
    background-color: #3098d0;
    color: #fff;
}

.btn-primary-demo:hover {
    border-color: #131313;
}

#how-it-works {
    background-color: #fff;
    padding: 50px;
    text-align: center;
}

.section-heading {
    font-size: 36px;
    color: #333;
}

.step-card {
    background-color: #f2f2f2;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2); /* Initial box-shadow */
}

.step-card:hover {
    background-color: #e0e0e0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.2); /* Box-shadow on hover */
}

.step-heading {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
}

.step-description {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/*end-index.html*/

/*about-us*/
.about-section {
    padding: 50px 0;
    background-color: #f8f8f8;
}

.section-heading {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 32px;
}

.about-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.team-section {
    padding: 50px 0;
    background-color: #fff;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.team-member:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 24px;
}

.team-member p {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
}

.team-member .social-links a {
    display: inline-block;
    margin: 0 5px;
    color: #555;
    font-size: 20px;
    transition: color 0.3s;
}

.team-member .social-links a:hover {
    color: #007bff;
}

.testimonial-section {
    padding: 50px 0;
    background-color: #f8f8f8;
}

.testimonial-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 32px;
}

.testimonial {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.testimonial p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    color: #777;
    text-align: right;
}

.core-values-section {
    background-color: #f8f8f8;
    padding: 50px 0;
}

.core-values-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 32px;
}

.core-value {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.core-value h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 24px;
}

.core-value p {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
}

.col-md-4 {
    margin-bottom: 30px;
}

/*end-about-us*/


.content-container {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
}

.content-main {
    flex-grow: 1;
}


#login form
.container {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.form-section {
    float: left;
    width: 50%;
    text-align: center;
    padding: 50px;
}

label input[type="text"], label input[type="password"] {
    width: 60%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
}

button[type="submit"] {
    width: 20%;
    padding: 14px 20px;
    background-color: #2980b9;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#error-message {
    color: red;
}

/* Add User */

.form-container {
    max-width: 80%;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.form-container h4 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
    color: #333;
}

.form-container label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #555;
}

.form-container input[type="text"],
.form-container input[type="date"],
.form-container select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.form-container textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    resize: none;
    max-height: 72px; /* Adjust the height as needed */
    overflow-y: auto;
}

.form-container .btn-primary {
    border: none;
    padding: 12px;
    cursor: pointer;
    width: 100%;
    display: block;
    border-radius: 50px;
    background-color: #343a40;
}

.form-container .btn-primary:hover {
    background-color: #23272b;
    border-color: #23272b;
}

.select-arrow {
    -webkit-appearance: menulist-button;
    -moz-appearance: menulist-button;
    appearance: menulist-button;
}

/*user-count.html*/
.custom-card {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-card {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-link {
    text-decoration: none;
    color: #1323de;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: x-large;
}

.card-link i {
    margin-right: 5px;
}

/*Select2 CSS*/
.select2-container--bootstrap .select2-selection--single {
    height: 38px;
    padding: 6px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    background-color: white;
}

/*Back button*/
.button-container {
    display: flex;
    justify-content: flex-end;
}