body {
    color: rgba(18, 18, 18, 0.75);
    font-family: "Plus Jakarta Sans", serif;
    font-weight: 400;
    padding-top: 75px;
}

footer {
    border-top: 1px solid #d7dbdd;
    margin-top: 60px;
}

.contained-alert {
    width: 100%;
    margin: 0 auto;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.auth-card {
    background-color: #FFF;
    border-radius: 30px;
    border: 1px solid transparent;
    box-shadow: 0 5px 10px #aab7b8;
}

.auth-card .card-body {
    padding: 30px;
}

.stick-to-footer {
    margin-bottom: -60px;
}

/* Apply styles for larger screens (Desktop) */
@media (min-width: 768px) {
    .contained-alert {
        width: 80%;
    }

    .section-title {
        font-size: 40px;
    }

    .auth-card .card-body {
        padding: 80px 150px;
    }
}

.main-container {
    margin-top: 80px;
}

.footer {
    background-color: #343a40;
    color: #fff;
    padding: 40px 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 24px;
}

.plus-jakarta-sans-normal {
    font-family: "Plus Jakarta Sans", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.plus-jakarta-sans-bold {
    font-family: "Plus Jakarta Sans", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

/*footer start */
footer li a {
    padding: 10px 0;
    display: inline-block;
    color: rgb(111, 127, 146);
}

/*footer end*/


/*header start*/
.search-input {
    background-color: #f8f9fa; /* Light grey background */
    border: none; /* Remove border */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.search-input:focus {
    background-color: #ffffff; /* White background on focus */
    border: none; /* Keep border clean */
    outline: none; /* Remove outline */
    box-shadow: none; /* Prevent Bootstrap shadow */
}

.input-group {
    border: 1px solid #ddd; /* Light border for the container */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Ensure proper corner rounding */
    transition: border-color 0.3s ease;
}

.input-group:focus-within {
    border-color: #007bff; /* Bootstrap's primary blue color on focus */
    background-color: #ffffff; /* Change container background on focus */
}

.input-group-text {
    background-color: #f8f9fa; /* Match input background */
    border: none; /* Remove border */
}

.search-input::placeholder {
    color: #adb5bd; /* Light grey placeholder text */
}

.auth-btn-wrapper a {
    padding: 10px 20px;
}

/*header ends*/

/*QA Cards*/
/* Custom CSS for Q&A Card */
.qa-card-container {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.qa-card-profile-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.qa-card-username {
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.qa-card-timestamp {
    color: #999;
    font-size: 0.8rem;
}

.qa-card-question {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 8px;
}

.qa-card-answer {
    color: #555;
    margin-top: 5px;
}

.qa-card-read-more {
    color: #e83e8c;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.qa-card-footer {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 10px;
}

.qa-card-emoji {
    font-size: 1rem;
}

.qa-card-asked-by {
    font-size: 14px;
}

/*QA Cards end */