/* Reset Some Basic Elements */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Poppins-Regular, sans-serif;
    background-color: #fff8f0; /* Light yellowish background */
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.mainbody {
    display: flex;
    font-family: Poppins-Regular, sans-serif;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(to right, #800000, #fff8f0);
    position: relative;
}

@media (max-width: 768px) {
    .mainbody::before,
    .mainbody::after {
        display: none; /* Hide the triangles on mobile devices */
    }
}
.mainbody::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(180deg); /* Added rotate(180deg) */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 390px 0 250px 350px; /* Doubled the border-width values */
    border-color: transparent transparent transparent #dca2a2;
}

.mainbody::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-10%); /* No rotation needed */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 390px 0 250px 350px; /* 1/3rd the size of the original triangle */
    border-color: #9d3939 transparent transparent transparent;
}

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
    width: 90%; /* Adjusted for responsiveness */
    max-width: 400px; /* Limit max width */
}

.login__container img.logo {
    max-width: 100%;
    height: auto;

}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: top;
    justify-content: top;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
    width: 400px;
    height: 600px; /* Increased vertical size */
}

.login-title {
    
    color: #333;
}

.top-header {
    display: flex;
    align-items: center;
    background: #ff6a00;
    color: #fff;
    height: 100px; /* Set a specific height */
}

.logo-container {
    display: flex;
    flex: 1;
    background: linear-gradient(to right, #800000, #ff6a00);
    justify-content: center;
    width: 15%;
    height: 100%;
    
}

.logo-container img {
    max-width: 100px; /* Adjust logo size */
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 85%;
    height: 100%;
}

.nav-container-top {
    display: flex;
    height: 50%;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #0b0b0b;
    padding-left: 150px;
    color: #fff;
    border-bottom-left-radius: 25px; /* Rounded bottom-left corner */
}

.nav-container-bottom {
    display: flex;
    height: 50%;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #ff6a00, #ffb700); /* Horizontal fading background */
    color: #fff;
}

.nav-container_bottom-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
}

.nav-container_bottom-right {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 30%;
}
.nav-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.nav-link {
    color: #fff;
    margin-right: 20px;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Responsive Design for Mobile View */
@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        height: auto;
        position: relative;
    }

    .logo-container {
        width: 100%;
        height: auto;
        justify-content: left;
        padding-left: 1rem;
    }

    .nav-container {
        display: none; /* Hide nav-container */
        width: 100%;
        height: auto;
    }

    .hamburger-menu {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 1rem;
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        width: 30px;
        height: 20px;
        
    }

    .hamburger-menu div {
        background-color: #fff !important; /* Force color to white */
        height: 3px;
        width: 100%;
        border-radius: 2px;
    }

    .nav-link {
        color: #fff;
        margin-right: 20px;
        text-decoration: none;
        font-size: 1.2rem;
        }

    .container {
        display: flex;
        flex: 1;
        padding: 20px;
        margin-top: 10px;
        align-items: flex-start; /* Align content at the top */
        justify-content: space-between;
        background-color: #fff;
    }
}



/* Responsive styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 10px;
    }
}

@media (max-width: 992px) {
    .top-header {
        flex-direction: column; /* Stack logo-container and nav-menu-container vertically */
        height: auto;
    }
    .logo-container {
        width: 100%; /* Full width for smaller screens */
        height: auto;
    }
    .nav-menu-container {
        width: 100%; /* Full width for smaller screens */
    }
    .nav-section, .menu {
        height: auto; /* Adjust height for smaller screens */
    }
    .top-header, .menu-bar {
        width: 100%;
    }
    .logo {
        width: 100%;
        text-align: center;
    }
    .nav-section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        display: flex;
    }
    .menu-toggle-container {
        width: 100%;
        justify-content: center;
        background-color: #ffb700;
        text-align: center;
        display: flex;
    }
    .menu-bar .container {
        flex-direction: column;
        align-items: center;
    }
    .dropdown-btn {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .login {
        margin-top: 50px;
        padding: 15px;
    }

    .login__title {
        font-size: 1.5rem;
    }

    .form-controls {
        font-size: 1rem;
        padding: 8px;
    }

    .btn-login {
        font-size: 1rem;
        padding: 10px;
    }

    .social-icons img {
        width: 25px;
        height: 25px;
    }
}

/* Header Styles
.header {
    background-color: #d9d9d9;
    color: #fff;    
    padding: 20px;
}

.logo-title {
    display: flex;
    align-items: center;
}

.logo {
    width: 100px;
    height: 100px;
    margin-right: 15px;
}

.title {
    font-size: 24px;
    text-align: center;
}
*/
/* Main Container Styles */
.container {
    display: flex;
    flex: 1;
    padding: 20px;
    margin-top: 0px;
    align-items: flex-start; /* Align content at the top */
    justify-content: space-between;
    background-color: #fff;
    
}

/* Sidebar Styles */
.sidebar {
    width: 213px;
    background-color: #fce4ec; /* Light red background */
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}



/* Main Content Styles */
.main-content {
    flex: 1;
    padding: 0px;
    background-color: #fff;
}

.text-danger{
    color: #e57373; /* Light red on hover */
}


.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer {
    flex-shrink: 0;
    background: linear-gradient(to right, #800000, #ff6a00);
    color: #fff;
    text-align: center;
    vertical-align: middle;
    padding: 8px;
}
@media (max-width: 768px) {
    .footer {
        padding: 20px 0;
        position: static;
    }
}

.form-check-input {
	float: left;
	margin-top: .3rem;
	margin-left: -1.25rem
}

/* Form Styles */
form {
    max-width: 1400px;
    margin-top: 20px;;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}



.form-group {
    width: 100%
    
}

.form-control, .form-control-file, .form-control-select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.btn {
    padding: 10px 15px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.btn:hover {
    background-color: #0056b3;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

select, input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

select:hover, input:hover, textarea:hover {
    border-color: #e57373; /* Light red hover */
    box-shadow: 0 0 5px rgba(229, 115, 115, 0.5);
}

select:focus, input:focus, textarea:focus {
    border-color: #e57373; /* Light red focus */
    outline: none;
    box-shadow: 0 0 5px rgba(229, 115, 115, 0.8);
}

.percentage-input {
    display: flex;
    align-items: center;
}

.percentage-input input {
    width: calc(100% - 30px); /* Adjust width to fit the % symbol */
    margin-right: 5px;
}

.percentage-input span {
    font-weight: bold;
    color: #555;
}

.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    padding: 5px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.select2-container--default .select2-selection--multiple:focus,
.select2-container--default .select2-selection--multiple:hover {
    border-color: #e57373; /* Light red */
    box-shadow: 0 0 5px rgba(229, 115, 115, 0.5);
}

button {
    padding: 12px 20px;
    background-color: #003366; /* Dark blue */
    color: #fff;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #00509e; /* Lighter dark blue on hover */
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

/* Question and Passage Styles */
.question, .passage {
    padding: 20px;
    border-radius: 8px;
    background-color: #ffe6e6; /* Light red background for questions */
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.passage {
    background-color: #fff9f0; /* Light yellow background for passages */
}

.passage-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #003366; /* Dark blue */
    text-align: center;
}

.passage-content {
    margin-bottom: 20px;
}

.questions {
    margin-top: 10px;
}

.question h4 {
    margin: 0 0 5px 0;
    color: #003366; /* Dark blue */
}

.options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.options li {
    padding: 5px 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #ffe6e6; /* Light red options */
}

.answer {
    color: #27ae60; /* Green for answers */
    font-weight: bold;
    margin-top: 5px;
}

.back-button {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #003366; /* Dark blue */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-button:hover {
    background-color: #00509e; /* Lighter dark blue on hover */
    transform: translateY(-2px);
}

.back-button:active {
    transform: translateY(0);
}

.download-button {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #003366; /* Dark blue */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-button:hover {
    background-color: #00509e; /* Lighter dark blue on hover */
    transform: translateY(-2px);
}

.download-button:active {
    transform: translateY(0);
}

/* styles.css */

/* Container for all questions */
.questions-container {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between questions */
    padding: 20px;
}

/* Individual question container */
.question-item {
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

/* Alternating background colors */
.questions-container .question-item:nth-child(odd) {
    background-color: #f0f8ff; /* Alice Blue */
}

.questions-container .question-item:nth-child(even) {
    background-color: #faebd7; /* Antique White */
}

/* Hover effect for better UX */
.question-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styling for question text */
.question-text {
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Styling for options */
.options-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 10px;
}

.options-list li {
    padding: 5px 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    
}

.options-list li::before {
    content: attr(data-option);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Styling for the answer */
.answer-text {
    font-style: italic;
    color: #27ae60; /* Green for answers */
    font-weight: bold;
    margin-top: 5px;
}

/* Spinner Styles */
.spinner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner img {
    width: 100px;
    height: 100px;
}

/* Essay Feedback Report Styles */
.feedback-section {
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

/* Alternating background colors */
.feedback-section:nth-child(odd) {
    background-color: #e6f7ff; /* Light Blue */
}

.feedback-section:nth-child(even) {
    background-color: #fff0f6; /* Light Pink */
}

.feedback-section h3 {
    border-bottom: 2px solid #6c757d;
    padding-bottom: 5px;
}

.rubric-feedback {
    margin-bottom: 15px;
}

.rubric-feedback h4 {
    margin-bottom: 5px;
    color: #343a40;
}



ul {
    list-style-type: disc;
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}


/* Download Buttons Container */
.download-buttons {
    margin-top: 0px;
    display: flex;
    gap: 10px;
}

/* Custom Button Styles (if not using Bootstrap) */
.btn {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    width:180px;
}

.btn-success {
    background-color: #28a745;
    color: #ffffff;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-normal {
    background-color: #003366;
    color: #ffffff;
}

.btn-normal:hover {
    background-color: #003388;
}

.btn-back {
    background-color: #0c0238;
    color: #ffffff;
    text-decoration: none;
    
}

.btn-back:hover {
    background-color: #0c0238;
}

.btn-danger {
    background-color: #dc3545;
    color: #ffffff;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Form Container */
.form-containers {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    
}

.set-height{
    height: 200px;
}

/* Form Labels */
.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Form Labels */
.form-label-hidden {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #ffffff;
}

/* Form Controls */
.form-controls {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 50px; /* Fully rounded border */
    cursor: pointer;
    font-size: 1em;
}

.btn-login {
    background: linear-gradient(to left, #eb3333, #a05252); /* Gradient from dark to lighter shade */
    color: #ffffff;
}

.btn-login:hover {
    background-color: #800000;
}
.btn-primary {
    background-color: #007bff;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0069d9;
}

.btn-success {
    background-color: #28a745;
    color: #ffffff;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-danger {
    background-color: #dc3545;
    color: #ffffff;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-login {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Dashboard Container */
.dashboard-container {
    width:1200px;
    margin: 50px auto;
    padding: 30px;
    max-width: 1200px;
    margin: 1px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: 10px;
}

@media screen and (max-width: 600px) {
    .dashboard-container {
        width:100%;
        margin: 5px auto;
        padding: 3px;
        margin: 1px auto;
        height: 100%;
        background-color: #ffffff;
        border: 1px solid #dddddd;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin-left: 10px;
    }
    
}

.generate-coupons-container{
    width: 100%;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.event-deal-container{
    width: 70%;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.prize-item{
    display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap;
}

@media screen and (max-width: 764px) {
    .event-deal-container {
        width:100%;
        margin: 5px auto;
        padding: 3px;
        margin: 1px auto;
        height: 100%;
        background-color: #ffffff;
        border: 1px solid #dddddd;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin-left: 10px;
    }

    .form-field {
        width: calc(50% - 10px); /* Two columns */
        
    }
    
}

.short-textbox {
    width: 200px;
}

.table {
	width: 100%;
	margin-bottom: 1rem;
	color: #212529;
    border-style: solid;

}

.table td,
.table th {
	padding: .75rem;
	vertical-align: top;
	border-top: 1px solid #dee2e6
}

.table thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #dee2e6
}

.table tbody+tbody {
	border-top: 2px solid #dee2e6
}

.table-sm td,
.table-sm th {
	padding: .3rem
}

.table-bordered {
	border: 1px solid #dee2e6
}

.table-bordered td,
.table-bordered th {
	border: 1px solid #dee2e6
}

.table-bordered thead td,
.table-bordered thead th {
	border-bottom-width: 2px
}

.table-borderless tbody+tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
	border: 0
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(0, 0, 0, .05)
}

.table-hover tbody tr:hover {
	color: #212529;
	background-color: rgba(0, 0, 0, .075)
}  

.btnn {
	display: inline-block;
	font-weight: 400;
	color: #212529;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
    
    float: right;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.btnn-primary {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff
}

.btnn-primary:hover {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc
}

.btnn-primary.focus,
.btnn-primary:focus {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
	box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5)
}

.btnn-primary.disabled,
.btnn-primary:disabled {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff
}

.mb-3,
.my-3 {
	margin-bottom: 1rem !important
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.closeessay {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.closeessay:hover,
.closeessay:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



.feedback-section {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.feedback-section h4 {
    margin-top: 0;
    color: #333;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feedback-layout {
    font-family: Arial, sans-serif;
}

.feedback-layout h3, h4 {
    margin-top: 20px;
    color: #333;
}

.feedback-layout ul {
    list-style-type: none;
    padding: 0;
}

.feedback-layout li {
    background-color: #f9f9f9;
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid #007bff;
}

.feedback-layout p {
    margin: 10px 0;
}


.pagination {
	display: -ms-flexbox;
	display: flex;
	padding-left: 0;
	list-style: none;
	border-radius: .25rem
}

.page-link {
	position: relative;
	display: block;
	padding: .5rem .75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: #007bff;
	background-color: #fff;
	border: 1px solid #dee2e6
}

.page-link:hover {
	z-index: 2;
	color: #0056b3;
	text-decoration: none;
	background-color: #e9ecef;
	border-color: #dee2e6
}

.page-link:focus {
	z-index: 3;
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.page-item:first-child .page-link {
	margin-left: 0;
	border-top-left-radius: .25rem;
	border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
	border-top-right-radius: .25rem;
	border-bottom-right-radius: .25rem
}

.page-item.active .page-link {
	z-index: 3;
	color: #fff;
	background-color: #007bff;
	border-color: #007bff
}

.page-item.disabled .page-link {
	color: #6c757d;
	pointer-events: none;
	cursor: auto;
	background-color: #fff;
	border-color: #dee2e6
}

.pagination-lg .page-link {
	padding: .75rem 1.5rem;
	font-size: 1.25rem;
	line-height: 1.5
}

.pagination-lg .page-item:first-child .page-link {
	border-top-left-radius: .3rem;
	border-bottom-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
	border-top-right-radius: .3rem;
	border-bottom-right-radius: .3rem
}

.pagination-sm .page-link {
	padding: .25rem .5rem;
	font-size: .875rem;
	line-height: 1.5
}

.pagination-sm .page-item:first-child .page-link {
	border-top-left-radius: .2rem;
	border-bottom-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
	border-top-right-radius: .2rem;
	border-bottom-right-radius: .2rem
}

.dropdown .btn-light {
    border: none;
    background: none;
    padding: 0;
    color: #333;
}

.dropdown .btn-light:hover {
    color: #007bff;
}

.dropdown .dropdown-menu {
    min-width: 100px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        box-shadow: none;
        border-bottom: 1px solid #ccc;
    }
    
    .form-group-1 {
        width: 100%;
    }

    .form-field {
        width: calc(50% - 10px); /* Two columns */
        
    }
    
    .form-control, .form-control-file, .form-control-select {
        width: 100%;
        padding: 8px;
        box-sizing: border-box;
    }

    .feedback-section h3, .feedback-section h4 {
        font-size: 1.2em;
    }
    
    .question-text {
        font-size: 1em;
    }

    .form-container {
        padding: 20px;
        margin: 20px;
    }
    
    .btn {
        width: 100%;
    }
}

/* General container styling */
.review_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Filters section styling */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between; /* Ensure filters span across the width */
    width: 100%; /* Full width of the container */
}

.filters label {
    font-weight: bold;
    margin-right: 5px;
}

.filters input, .filters button {
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1; /* Allow inputs to stretch evenly */
    min-width: 150px; /* Ensure inputs have a minimum width */
}

.filters button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    flex: 0; /* Prevent the button from stretching */
}

.filters button:hover {
    background-color: #0056b3;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
}

table thead {
    background-color: #f8f9fa;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

table th {
    font-weight: bold;
    background-color: #007bff;
    color: white;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #e9ecef;
}

table td[contenteditable="true"] {
    background-color: #fff8dc;
    border: 1px dashed #ccc;
}

table a {
    color: #007bff;
    text-decoration: none;
}

table a:hover {
    text-decoration: underline;
}

/* Checkbox styling */
#select_all {
    cursor: pointer;
}

input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}

/* Button styling */
button[type="submit"] {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 14px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #218838;
}


