/* Google Font Import - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root{
    /* ===== Colors ===== */
    --body-color: #f1f0f2;
    --sidebar-color: #FFF;
    --primary-color: #0177fb;
    --primary-color-light: #F6F5FF;
    --toggle-color: #DDD;
    --text-color: #b4b4b7;
    /* ====== Transition ====== */
    --tran-03: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.3s ease;
    --tran-05: all 0.3s ease;
}
body{
    min-height: 100vh;
    background-color: var(--body-color);
    transition: var(--tran-05);
    font-size: 16px;
}


/* ===== Sidebar ===== */
 .sidebar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 275px;
    padding: 20px 20px;
    background: var(--sidebar-color);
    transition: var(--tran-05);
    z-index: 100; 
}
.sidebar.close{
    width: 88px;
}
/* ===== Reusable code - Here ===== */
.sidebar li{
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.sidebar li a.is-active {
	background-color: var(--primary-color);
	color: var(--sidebar-color);
}
.sidebar li a {
	color: var(--text-color);
	padding: 10px;
	width: 100%;
  border-radius: 6px;

}

.sidebar .toggle{
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%) rotate(180deg);
    height: 25px;
    width: 25px;
    background-color: var(--primary-color);
    color: var(--sidebar-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: var(--tran-05);
}

.sidebar.close .toggle{
    transform: translateY(-50%) rotate(0deg);
}


.sidebar li a{
    list-style: none;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--tran-03);
    padding: 10px;
    text-transform: uppercase;
}
.sidebar li a:before {
	font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f013";
  margin-right: 10px;
}
.sidebar #block-aiorch-account-menu li:nth-child(1) a:before {
	content: "\f007";
}
.sidebar #block-aiorch-account-menu li:nth-child(2) a:before {
	content: "\f08b";
}
.sidebar li a:hover{
    background-color: var(--primary-color);
}
.sidebar li a:hover .icon,
.sidebar li a:hover .text,
.sidebar li a:hover {
    color: var(--sidebar-color);
}
.sidebar #primary-sidebar {
	height: 100%;
}
.sidebar #primary-sidebar>div {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.sidebar #primary-sidebar .nav-menu-block {
	order: 2;
}
.sidebar #primary-sidebar #block-aiorch-mainnavigation {
	flex: 1;
}
.sidebar #primary-sidebar #block-aiorch-headerlogo {
	order: 1;
	margin: 20px 0;
}
.sidebar #primary-sidebar #block-aiorch-headerlogo  img {
	/*height: 50px;*/
	/*aspect-ratio: 0.5 / 0.1;*/
	border: 2px solid #0000000a;
}
.sidebar + .content-section {
	margin-left: 275px;
}
.sidebar + .content-section #header {
	position: fixed;
  top: 0;
  left: 275px;
  width: calc(100% - 273px);
  min-height: 60px;
  background-color: #fff;
  margin-left: 2px;
  justify-content: end;
  display: flex;
  padding: 0 20px;
  z-index: 501;
}
.sidebar + .content-section #header img {
	margin-top: 8px;
}
.sidebar + .content-section #content.main-content {
	margin-top: 100px;
	padding: 0px 20px;
}

/* upload files page start here */
.uploaded-csv-files {
	margin: 0 auto;
  background-color: #ffffff;
  padding: 15px 0px 30px;
  border-radius: 20px;
}
.uploaded-csv-files table {
	margin: 35px;
	table-layout: fixed;
	border: 0;
	width: calc(100% - 70px);
}
.uploaded-csv-files table tr {
	
}
.uploaded-csv-files table th {
	border-bottom: 1px solid #d9d9da;
	text-align: left;
	padding: 10px;
}
.uploaded-csv-files table th a {
	color: #000;
}
.uploaded-csv-files table th a .tablesort {
	vertical-align: middle;
  margin-left: 5px;
}
.uploaded-csv-files table td {
	padding: 15px;
	border-bottom: 1px solid #d9d9da;
}
.uploaded-csv-files table td a {
	color: var(--primary-color);
}
.uploaded-csv-files table td .status-orange, .uploaded-csv-files table td .status-green {
	    background-color: #0078d0;
    border: 0;
    border-radius: 56px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: system-ui, -apple-system, system-ui, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 600;
    outline: 0;
    padding: 16px 21px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
.uploaded-csv-files table td .status-orange {
	background-color: #fa6400;
}
.uploaded-csv-files table td .status-orange:hover, .uploaded-csv-files table td .status-orange:focus {
	background-color: #fb8332;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  transform: translateY(-1px);
}
.uploaded-csv-files table td .status-green {
	background-color: #2ea44f;
}
.uploaded-csv-files table td .status-green:hover, .uploaded-csv-files table td .status-green:focus {
	background-color: #2c974b;
	transform: translateY(-1px);
}
.uploaded-csv-files table td.views-field-name:before {
	font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f1c3";
  margin-right: 10px;
  color: #b4b4b7;
}
/* upload files page end here */
/* upload-file-form page start here */
.upload-file-form {
	margin: 35px auto;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
}
.upload-file-form .form-item-files-csv-file {
	/*display: flex;*/
 /* flex-direction: column;*/
 /* justify-content: center;*/
 /* gap: 20px;*/
}
.upload-file-form .form-item-files-csv-file .description {
	margin-top: 20px;
}
.upload-file-form .form-item-files-csv-file .description a {
	color: var(--primary-color);
}
.upload-file-form .form-item-files-csv-file .description a:hover {
	text-decoration: underline;
}
.upload-file-form .form-submit {
	margin-top: 20px;
	align-items: center;
  background-color: #06f;
  border: 2px solid #06f;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  fill: #000;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 40px;
  justify-content: center;
  letter-spacing: -.8px;
  line-height: 24px;
  min-width: 140px;
  outline: 0;
  padding: 0 17px;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  border-radius: 6px;
}
.upload-file-form .form-submit:hover {
	background-color: #3385ff;
  border-color: #3385ff;
  fill: #06f;
}
/* upload-file-form page end here */
#views-exposed-form-questions-block-uaqwc{
	/*display:none;*/
}
/*accordian new*/
.user-asked-questions-with-category {
    margin: 0 auto;
    background-color: #ffffff;
    padding: 35px 35px;
    border-radius: 20px;
}
.user-asked-questions-with-category form.views-exposed-form {
    /*display: none*/
}
.user-asked-questions-with-category ul.accordion {
 
}
.user-asked-questions-with-category ul.accordion li.item {
    width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    border: 1px solid #ccc;
    margin-bottom: 5px;
    border-radius: 4px;
    overflow: hidden;
}
.user-asked-questions-with-category ul.accordion li.item h3 {
        /* padding: 15px; */
    background-color: #0177fb;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    display: block;
    margin: 0;
    padding: 22px 20px;
    font-size: 1em;
    color: #ffffff;
    cursor: pointer;
}
.user-asked-questions-with-category ul.accordion li.item h3::after {
        position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 12px;
    height: 12px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    content: "";
}
.user-asked-questions-with-category ul.accordion li.item h3.arrow::after {
    transform: rotate(132deg);
}
.user-asked-questions-with-category ul.accordion li.item .ans {
    padding: 15px;
    background-color: #fff;
}
nav.pager .pager__item a {
    background: #ccc !important;
    color: #000000;
}
nav.pager .pager__item.is-active a {
    background: #0177fb !important;
}

/* 1. CONTAINER: Use Flexbox to put items on one line and set spacing */
.views-exposed-form {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 30px;      /* Space between items */
    align-items: flex-start; /* Aligns all items to the top edge */
    padding: 30px;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 30px;
}

/* 2. FORM ITEMS: Allow select fields to take up equal space */
.views-exposed-form .js-form-item {
    /* Set a minimum width and allow items to grow */
    flex: 1 1 200px; 
    margin: 0;
}

/* 3. BUTTON CONTAINER: Align the button to the bottom line of the inputs */
.views-exposed-form .form-actions {
    /* Critical property: Aligns the button container to the bottom of the row */
    align-self: flex-end; 
    flex: 0 0 auto; /* Don't allow it to grow much, only enough for the button */
    margin: 0;
}

/* 4. LABELS: Ensure labels are above the select/input fields */
.views-exposed-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

/* 5. SELECT FIELDS: Basic styling */
.views-exposed-form .form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #aaa;
    border-radius: 4px;
    font-size: 1em;
}

/* 6. BUTTON: Style the "Apply" button */
.views-exposed-form .form-submit {
    width: 100%;
    /* Set the height to match the select boxes visually */
    height: 42px; 
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.views-exposed-form .form-submit:hover {
    background-color: #0056b3;
}

/* RESPONSIVENESS: Stack items on small screens */
@media (max-width: 600px) {
    .views-exposed-form {
        flex-direction: column; /* Stack vertically */
        align-items: stretch; /* Stretch items to full width */
    }
}

    .
