/* Global Styles */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
}

body {
    padding-top: 220px;
    overflow-y: scroll;
}

a {
    font-weight: 700;
    text-decoration: none;
    color: 	#607f75 !important;
}

a:hover {
    text-decoration: underline;
    font-weight: 700;
    color: #607f75 !important;
    opacity: 0.8;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px solid #333;
    padding: 4px;
    text-align: left;
}

thead, tbody {
    font-size: 10px;
}

thead {
    font-weight: 600;
}

/* Scrollbar Styles */
*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #D9D9D7;
    border-radius: 10px;
}

*::-webkit-scrollbar {
    width: 12px;
}

/* Page Layout */
#page-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    align-items: center;
}

#content-wrapper {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    margin-left: 275px;
}

#main-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
    box-sizing: border-box;
    width: 80%;
}

#outer-chat-container {
    width: 100%;
    height: 800px;
    padding: 30px;
    box-sizing: border-box;
}

.form-container {
    margin-left: 275px;
    margin-bottom: 35px;
    height: 100%;
    width: 100%;
    max-width: calc(100% - 275px);
    padding: 20px;
    padding-left: 50px;
    box-sizing: border-box;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-x: hidden;
}


/* Sidebar */
#sidebar-assets h1{
    padding-left: 20px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

/* Sidebar-specific link override */
.sidebar-header-link a,
.sidebar-header-link a:link,
.sidebar-header-link a:visited,
.sidebar-header-link a:hover,
.sidebar-header-link a:active {
    text-decoration: none !important;
    color: inherit !important;
}

.sidebar-header-link {
    text-decoration: none !important;
}

.sidebar-header-link a {
    text-decoration: none !important;
}

.sidebar-header-link a:hover {
    text-decoration: none !important;
}

.sidebar-header-link h1 {
    padding-left: 20px;
    padding-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    transition: color 0.2s ease-in-out !important;
}

.sidebar-header-link:hover h1 {
    color: #333 !important;
    text-decoration: none !important;
}


#sidebar-assets {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 275px;
    padding: 130px 10px 10px 10px;
    background-color: #f1f1f1;
    box-sizing: border-box;
    max-height: 100%;
    overflow-y: auto;
    z-index: 1040;
}


.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.sidebar {
    width: 275px;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar h3 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    color: #CBCBCB;
    font-size: 29px;
    line-height: 35px;
}

#tools {
    list-style-type: none;
    margin: 0;
    padding-left: 20px;
    padding-bottom: 40px;
}

#tools li {
    margin-bottom: 10px;
}

#tools a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: #000;
    transition: font-weight 0.2s ease-in-out;
}

#tools a.active {
    font-weight: 600;
    color: #607f75;
}

#tools a:hover {
    font-weight: 600;
    color: #607f75;
}

#downloads {
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.download-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    margin-bottom: 5px;
}

.download-icon, .link-icon {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.download-icon:hover {
    transform: scale(1.1);
}

.link-icon:hover {
    transform: scale(1.1);
}

.file-container {
    display: flex;
    align-items: center;
    margin-left: 7px;
}

@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-item {
    opacity: 0;
    animation: fadeInSlideUp 0.5s ease-out forwards;
}

.file-name {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    color: #1266f1;
    font-weight: 600;
    font-size: 10px;
    text-decoration: none;
    white-space: nowrap;
    flex-grow: 1;
}

/* Utilities */
#utilities {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
}

/* Progress Bar */
#progress-bar {
    width: 100%;
    max-width: 675px;
    height: 20px;
    font-size: 9px;
    font-weight: 600;
    background-color: rgba(96, 127, 117, 0.1);
    border: 1px solid #EAEBEA;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 5px;
    overflow: hidden;
    box-sizing: border-box;
    white-space: nowrap;
}

/* Progress Fill */
.progress-fill {
    position: absolute;
    height: 100%;
    width: 0;
    left: 0;
    top: 0;
    background-color: #A6A6A6;
    z-index: 1;
    border-radius: 16px;
    transform: translateX(-10px);
}

.progress-fill.last-step {
    transform: translateX(0);
}

/* Progress Steps */
#progress-bar .progress-step {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    height: 100%;
    border-radius: 16px;
    padding: 0 8px;
    margin: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, opacity 0.3s ease, width 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    background-color: transparent;
    color: #000;
    position: relative;
    z-index: 2;
}

/* Hover Effect for Progress Steps */
#progress-bar .progress-step:hover {
    background-color: rgba(166, 166, 166, 0.2);
    color: #000;
    padding: 0 15px;
    margin: 0 -7px;
}

#progress-bar .progress-step:not(.active):hover {
    background-color: rgba(222, 224, 223, 0.5);
    color: #000;
}

/* Active Progress Step */
#progress-bar .progress-step.active {
    background-color: #A6A6A6;
    color: #FFF;
}

/* Progress Separators */
#progress-bar .progress-separator {
    width: 20px;
    padding: 0 5px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease, width 0.3s ease, padding 0.3s ease;
}

.progress-step, .progress-separator {
    transition: opacity 0.3s ease;
}

.progress-step.hidden + .progress-separator {
    display: none !important;
}

.progress-step.hidden, .progress-separator.hidden {
    width: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.hidden {
    display: none !important;
}

/* Icons/Headers */
.svg-icon {
    width: 12px;
    height: 12px;
    display: inline-block;
    background-image: url('/static/img/refresh.svg');
    background-size: cover;
    background-position: center;
}

#refreshBtn {
    background-color: #f1f1f1 !important;
    color: #000000 !important;
    border: 0px !important;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.submit-arrow {
    width: 14px;
    height: 14px;
    display: inline-block;
    background-image: url('/static/img/submit.svg');
    background-size: cover;
    background-position: center;
}

#chat-header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding-left: 35px;
    padding-bottom: 20px;
}

#chat-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    text-align: left;
}

/* Chat */
/* Spinner Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Spinner Styles */
#loading-overlay .fa-spinner {
    font-size: 50px;
    color: #EAEBEA;
}

/* Loading Text Styles */
.loading-spinner-text {
    margin-top: 15px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #EAEBEA;
    text-align: center;
    position: relative;
}

/* Dots Animation */
@keyframes dots {
    0%   { content: ''; }
    33%  { content: '.'; }
    66%  { content: '..'; }
    100% { content: '...'; }
}

.dots::after {
    content: '';
    position: absolute;
    animation: dots 1.5s steps(3, end) infinite;
    left: 100%;
    margin-left: 2px;
}

#chat-container {
    margin-left: 275px;
    margin-bottom: 30px;
    width: 100%;
    max-width: calc(100% - 275px);
    padding: 20px;
    box-sizing: border-box;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

#chat-window {
    flex-grow: 1;
    background: #FFFFFF;
    padding: 20px;
    padding-right: 350px;
    box-sizing: border-box;
    overflow-y: auto;
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.message-container {
    margin-bottom: 10px;
}

.message-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    margin-top: 45px;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
}

.chat-message {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    margin: 5px;
    margin-left: 30px;
    padding: 10px;
    border-radius: 10px;
}

.chat-message strong {
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    line-height: 17px;
}

.system-message {
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

.user-message {
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

/* Chat Inputs */
#caseNumberForm, #caseNumberForm input, #caseNumberForm button,
#correctedMarkForm, #correctedMarkForm input, #correctedMarkForm button {
    outline: none;
}

#caseNumberForm, #correctedMarkForm {
    position: relative;
    width: 300px;
    height: 45px;
    background: #E4E5E1;
    box-shadow: 0px 1px 29px 3px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
}

#caseNumberForm input, #correctedMarkForm input {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    flex: 1;
    margin-right: 10px;
    border: none;
    background: transparent;
}

#caseNumberForm button {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    right: 5px;
}

#correctedMarkForm button {
    width: 25px;
    height: 25px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
}

/* Buttons */
.fileTypeBtn, .markBtn, .markCheckBtn, .yes-no-button, .yes-no-button-ex, #submitCaseNumbers, #submitGoodsServicesCases, #searchCrowdedFieldBtn, #searchGoodsServicesBtn {
    background: #E4E5E1;
    border: none;
    border-radius: 10px;
    padding: 5px 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    margin-top: 5px;
}

.markBtn.selected {
    background-color: rgba(96, 127, 117, 0.6)
}

.fileTypeBtn:hover, .markBtn:hover, .markCheckBtn:hover, .yes-no-button:hover, .yes-no-button-ex:hover, #submitCaseNumbers:hover, #submitGoodsServicesCases:hover {
    background: #D9D9D7;
}

#continueButtonContainer, #completeButtonContainer, #additionalContextButtonContainer {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 17px;
    margin-top: 20px;
    margin-left: 50px;
}

#continueBtn, #generateBtn, #additionalContextBtn, #backToReviewBtn  {
    background: #E4E5E1;
    border: none;
    border-radius: 10px;
    padding: 5px 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 20px;
}

#continueBtn:hover, #generateBtn:hover, #additionalContextBtn:hover, #backToReviewBtn:hover {
    background: #D9D9D7;
}

#betaLabel {
    background: transparent;
    border: 2px solid #D9D9D7;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 1px 3px;
    font-size: 10px;
    line-height: 17px;
    color: #D9D9D7;
    display: inline-block;
    text-align: center;
}


/* Stylized Mark Filter */
.stylizedFilter-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.stylizedFilter-container input[type="checkbox"] {
    margin-right: 10px;
}

.stylizedFilter-container label {
    font-size: 14px;
    font-weight: normal;
    color: #333;
    cursor: pointer;
}

/* Results Table */
.resultsTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
}

.resultsTable th, .resultsTable td {
    border: 1px solid #CBCBCB;
    padding: 4px;
    text-align: left;
}

.resultsTable thead, .resultsTable tbody {
    font-size: 10px;
}

.resultsTable thead {
    font-weight: 500;
}


/* Citations */
.citations-container {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    max-height: 400px;
    max-width: 90%;
    overflow-y: auto;
    padding: 10px;
    margin-left: 40px;
    margin-bottom: 10px;
}

.citations-container strong {
    font-weight: 600;
    font-size: 14px;
}

.citations-container h5{
    font-weight: 600;
    font-size: 16px;
}

.sub-category {
    margin-bottom: 10px;
}

.sub-category > input,
.sub-category > label {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
}

.citation-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
}

.citation-checkbox {
    margin-right: 10px;
}

/* General styles for checkbox layout */
.checkbox-fieldset {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    padding: 10px;
    flex: 1;
    min-width: 200px;
    max-width: calc(50% - 10px);
}

.checkbox-container {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: space-evenly;
flex-wrap: nowrap;
gap: 10px;
width: 100%;
}

.ch-legend {
font-size: 14px;
font-weight: bold;
margin-bottom: 10px;
}

.checkbox-fieldset div {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}

.checkbox-fieldset label {
    margin-left: 5px;
}

/* Hover effect with 30% opacity of #607f75 */
input[type="checkbox"]:hover {
    background-color: rgba(96, 127, 117, 0.4);
}

input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    background-color: #E4E5E1;
    flex-shrink: 0;
    margin-right: 10px;
}

/* Circular checkmark appearance when checked */
input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 15px;
    color: #000;
    background-color: #607f75;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

input[type="checkbox"]:checked {
    background-color: #607f75;
    border: none;
}


/* Transition for the pseudo-element for a smooth effect */
input[type="checkbox"]:before {
    content: '';
    width: 1.1em;
    height: 1.1em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
}

/* Style for labels next to checkboxes */
label {
    cursor: pointer;
    align-items: center;
}

/* Select/Deselect All */
.select-deselect-all {
    display: flex;
    margin-bottom: 10px;
}

.select-deselect-all span {
    margin: 0 2px;
}

.select-deselect-all button {
    padding: 2px 2px;
    font-weight: 600;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 12px;
}

/* Collapsible - Additional Context */
.collapsible {
    background: transparent;
    color: #444;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-weight: bold;
}

.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f9f9f9;
    margin-bottom: 10px;
}

.context-input {
    width: 100%;
    height: 100px;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.additionalContextContainer {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    margin-left: 35px;
}


/* Generated Response */
.genRes, #documentPreview {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    margin-left: 35px;
}

.genRes h1,
.genRes h2,
.genRes h3,
.genRes h4,
.genRes h5,
.genRes h6,
#documentPreview h1,
#documentPreview h2,
#documentPreview h3,
#documentPreview h4,
#documentPreview h5,
#documentPreview h6  {
    text-align: center;
    font-weight: 600;
}

.genRes h5,
#documentPreview h5 {
    font-size: 16px;
}

.genRes h6,
#documentPreview h6 {
    text-decoration: underline;
    font-style: italic;
    font-size: 14px;
}

/* Loading/Progress Bar */
.loading-bar-container h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 22px;
    color: #000000 !important;
}

.loading-message {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: #B7B7B7;
}

span[class^="dot-"]{
opacity: 0;
}
.dot-one{
animation: dot-one 2s infinite linear
}
.dot-two{
animation: dot-two 2s infinite linear
}
.dot-three{
animation: dot-three 2s infinite linear
}
@keyframes dot-one{
0%{
    opacity: 0;
}
15%{
    opacity: 0;
}
25%{
    opacity: 1;
}
100%{
    opacity: 1;
}
}

@keyframes dot-two{
0%{
    opacity: 0;
}
25%{
    opacity: 0;
}
50%{
    opacity: 1;
}
}

@keyframes dot-three{
0%{
    opacity: 0;
}
50%{
    opacity: 0;
}
75%{
    opacity: 1;
}
100%{
    opacity: 1;
}
}

.loading-bar-container {
    height: 100%;
    margin-left: 35px;
}

#progressBar {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 200px;
height: 25px;
border: none;
border-radius: 50px;
background-color: transparent;
box-shadow: 0px 4px 29px 6px rgba(0, 0, 0, 0.05);
color: #000;
}

#progressBar::-webkit-progress-bar {
border-radius: 50px;
background-color: #EAEBEA;
}

#progressBar::-webkit-progress-value {
border-radius: 50px;
background-color: #E0E1DD;
}

#progressBar::-moz-progress-bar {
border-radius: 50px;
background-color: #E0E1DD;
}

/* Crowded Field/Goods Comparison */
.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.input-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#termInput, #termInput1, #termInput2, #goodsServicesInput {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    margin: 5px;
    border: none;
    background: #E4E5E1;
    border-radius: 10px;
    padding: 5px 10px;
    width: 260px;
    height: 35px;
}

#termInput::placeholder, #termInput1::placeholder, #termInput2::placeholder, #goodsServicesInput::placeholder {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
}

#termInput:focus, #termInput1:focus, #termInput2:focus, #classSelect:focus, #classSelect1:focus, #classSelect2:focus, #goodsServicesInput:focus {
    outline: none;
}

/* Label Styling */
label[for="termInput"], label[for="termInput1"], label[for="termInput2"],
label[for="classSelect1"], label[for="classSelect2"], label[for="classSelect"], label[for="goodsServicesInput"] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    height: 35px;
}

/* Custom dropdown styling for crowded field form */
.crowded-dropdown {
    position: relative;
    display: inline-block;
    font-size: 14px;
    width: 200px;
    height: 40px;
    box-sizing: border-box;
}

.crowded-dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    border: none;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    max-height: 150px;
    overflow-y: auto;
    width: 200px;
}

.crowded-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 4px 16px;
    font-size: 12px;
    gap: 10px;
    cursor: pointer;
}


.crowded-dropdown-menu .dropdown-item input {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    align-self: auto;
}

.crowded-dropdown-menu .dropdown-item label {
    margin: 0;
    line-height: 1.2;
    display: inline-block;
}

.crowded-dropdown-menu.show {
    display: block;
}

.crowded-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E4E5E1;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    height: 100%;
    padding: 0 8px;
    box-sizing: border-box;
    text-align: left;
}

.crowded-dropdown-toggle::after {
    content: '\25BC';
    float: right;
}

/* Scrollbar styles */
.crowded-dropdown-menu::-webkit-scrollbar {
    width: 12px;
}

.crowded-dropdown-menu::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.crowded-dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #E4E5E1;
    border-radius: 10px;
}

.crowded-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background-color: #ccc;
}

/* Custom dropdown toggle styling */
#crowdedDropdownToggle {
    border-radius: 10px;
    width: 200px;

}

/* Ensure dropdown menu matches toggle width */
#crowdedDropdownMenu {
    width: 100%; /* Matches the toggle button width */
}

.custom-dropdown {
    position: relative;
    display: inline-block;
    font-size: 14px;
    width: 100%;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    max-height: 150px;
    overflow-y: auto;
    width: 130px;
}

.dropdown-menu .dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    justify-content: center;
    display: flex;
}

.dropdown-menu .dropdown-item input {
    margin-right: 10px;
}

.dropdown-menu.show {
    display: block;
}

#dropdownToggle, #dropdownToggle1, #dropdownToggle2 {
    padding: 8px 16px;
    border: none;
    border-radius: 10px;
    background-color: #E4E5E1;
    cursor: pointer;
    font-size: 14px;
    width: 150px;
    height: 35px;
    box-sizing: border-box;
    text-align: left;
}

#dropdownToggle::after, #dropdownToggle1::after, #dropdownToggle2::after  {
    content: '\25BC';
    float: right;
}

/* Customize scrollbar for WebKit browsers (Chrome, Safari, etc.) */
.custom-dropdown .dropdown-menu::-webkit-scrollbar {
    width: 12px;
}

.custom-dropdown .dropdown-menu::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.custom-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #E4E5E1;
    border-radius: 10px;
}

.custom-dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background-color: #E4E5E1;
}

/* For Firefox */
/* .custom-dropdown .dropdown-menu {
    scrollbar-color: #E4E5E1 #f1f1f1;
    scrollbar-width: thin;
} */


#crowdedSubmit, #goodsServicesSubmit {
    background: #E4E5E1;
    border: none;
    border-radius: 10px;
    padding: 5px 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 35px;
}

#crowdedSubmit:hover, #goodsServicesSubmit:hover {
    background: #D9D9D7;
}


/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 275px;
    width: calc(100% - 275px);
    height: 30px;
    background-color: #000;
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    text-align: center;
    line-height: 10px;
    transition: height 0.3s ease-in-out;
    z-index: 1030;
}

.footer:hover {
    height: 125px;
    line-height: 10px;
}

.footer a {
    color: #FFF;
    text-decoration: underline;
    font-weight: 500;
    transition: font-weight 0.2s ease-in-out;
}

.footer a:hover {
    color: #B7B7B7;
    font-weight: 600;
    text-decoration: underline;
}

.centered-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    overflow: hidden;
}

.footer .instagram-link i {
    margin-right: 5px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer .instagram-link:hover i {
    color: #B7B7B7;
}

/* Nav */
.navbar {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff !important;
    height: 220px;
    padding: 35px;
    margin-left: 275px;
    width: calc(100% - 275px);
    position: sticky;
    top: 0;
    z-index: 1030;
    display: flex;
    justify-content: space-between;
}

.navbar .navbar-brand {
    display: flex;
    width: auto;
    margin-bottom: 20px;
    margin-top: 20px;
}

.navbar-header {
    font-size: 16px;
    color: #607f75;
    font-weight: 600;
    margin-bottom: 20px;
}

.banner-image {
    height: 40px;
}

.navbar-nav {
    display: flex;
    align-items: flex-start;
}

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: black;
}

.navbar-nav .nav-link.dropdown-toggle {
    font-weight: bold;
    color: black;
    transition: color 0.2s ease-in-out;
}

.navbar-nav .nav-link.dropdown-toggle:hover {
    color: #333;
    text-decoration: none;
}

.navbar-nav .dropdown-menu {
    right: 0;
    border: none;
    border-radius: 0%;
    background-color: rgba(96, 127, 117, 0.2);
    max-height: none;
    overflow: visible;
}

.navbar-nav .dropdown-item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: font-weight 0.2s ease-in-out;
    padding: 10px 15px;
    margin-bottom: 5px;
}

.navbar-nav .dropdown-item:hover {
    font-weight: 700;
    background-color: rgba(96, 127, 117, 0.3);
    color: #333;
}

.collapse.navbar-collapse {
    margin-left: auto;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .navbar .navbar-collapse {
        justify-content: center;
    }

    .navbar-nav {
        margin-top: 10px;
    }
}

.modal-dialog {
    max-width: 60%;
    width: 60%;
    margin: auto;
}

.modal-content {
    background-color: #FFFFFF;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
}

.modal-content {
    z-index: 1050 !important;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal.show {
    display: block;
    opacity: 1;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Registration/Login/Profile */

.input-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    border: none;
    background: none;
}

.form-text {
    margin-top: 5px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    color: #607f75;
    transition: font-weight 0.2s ease-in-out;
}

.profile-link:hover {
    font-weight: 600;
    opacity: 0.6;
    color: #607f75;
    cursor: pointer;
}

.profileBtn {
    border: none;
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    background: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}

.profile-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    margin-bottom: 15px;
}

.profile-section label {
    font-size: 12px;
    margin-right: 10px;
}

.profile-section span {
    font-size: 12px;
    margin-right: 10px;
}

.profile-section strong {
    width: 90px;
    margin-right: 10px;
    font-size: 12px;
}

#changePasswordSection .form-control {
    width: 100%;
    height: 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    background: #FFFFFF;
    box-shadow: 0px 4px 29px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: none;
    padding: 10px;
}

#changePasswordSection {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

input[type="password"]:focus {
    outline: none;
    box-shadow: none;
    border-color: inherit;
}

.password-header {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

#passwordCriteria {
    margin-top: 10px;
    margin-bottom: 10px;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.button-container .info-text {
    width: 100%;
    margin-bottom: 10px;
}

.button-container .buttons-row {
    display: flex;
    gap: 10px;
}

.btn.btn-primary {
    background-color: #414141;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn.btn-primary:hover {
    background-color: #333;
    transform: scale(1.02);
}

.btn {
    margin-top: 10px;
    margin-bottom: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-4 {
    margin-top: 40px;
}

#manageBilling {
    display: block;
    margin-top: 15px;
}

.subscription-status.active {
    color: green;
    font-weight: bold;
}

.subscription-status.inactive {
    color: red;
    font-weight: bold;
}

#updateProfileForm {
    align-items: space-between;
    background: #FFFFFF;
}

#updateProfileForm label {
    font-family: 'Montserrat', sans-serif;
    width: 90px;
    font-weight: 500;
    font-size: 12px;
}

#updateProfileForm input {
    width: 250px;
    height: 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px 4px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    border: none;
    padding: 10px;
}

#updateProfileForm input:focus {
    outline: none;
}

#loginForm .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
}

#registerForm, #loginForm {
    margin-left: -20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 600px;
    gap: 15px;
    padding: 20px;
}

.form-group.horizontal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100%;
}

.form-group {
    display: flex;
    max-width: 250px;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group strong {
    margin-bottom: 10px;
    display: inline-block;
    font-size: 14px;
}

.form-group span {
    display: inline-block;
    font-size: 14px;
}

.form-container h5 {
    text-align: center;
    width: 100%;

}

.password-header h6{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

#registerForm label, #loginForm label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

#registerForm input, #loginForm input {
    width: 100%;
    height: 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    background: #FFFFFF;
    box-shadow: 0px 4px 29px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: none;
    padding: 10px;
    outline: none;
}

#registerForm input:focus, #loginForm input:focus {
    outline: none;
}

/* Registration form layout */
.register-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    margin-bottom: 20px;
}

.register-column {
    flex: 1;
    min-width: 100px;
}

.register-column .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
}

.register-column .form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.register-column .form-group input {
    width: 100%;
    height: 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    background: #FFFFFF;
    box-shadow: 0px 4px 29px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: none;
    padding: 10px;
    outline: none;
}

.register-column .form-text {
    font-size: 12px;
    margin-top: 5px;
    color: #666;
}

.register-column .position-relative {
    position: relative;
}

.register-column .input-group {
    position: relative;
    width: 100%;
}

.register-column .password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    border: none;
    background: none;
    z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .register-container {
        flex-direction: column;
        gap: 0;
    }

    .register-column {
        width: 100%;
    }
}

/* Form actions (buttons) */
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

/* .form-actions {
    display: flex;
    align-items: flex-start;
    gap: 10px;
} */

.button-common {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    appearance: none;
    -webkit-appearance: none;
    background-color: #414141;
    background-image: none;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    height: 40px;
    letter-spacing: 0.25px;
    outline: none;
    overflow: hidden;
    padding: 0 12px;
    position: relative;
    text-align: center;
    transition: background-color .218s, border-color .218s, box-shadow .218s;
    vertical-align: middle;
    white-space: nowrap;
    width: 150px;
    max-width: 400px;
    min-width: min-content;
}

.button-common:hover {
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.button-common:disabled {
    cursor: default;
    background-color: #ffffff61;
}

.button-common:disabled .gsi-material-button-state {
    background-color: #1f1f1f1f;
}

.button-common:disabled .gsi-material-button-contents {
    opacity: 38%;
}

.button-common:disabled .gsi-material-button-icon {
    opacity: 38%;
}

.button-common:not(:disabled):active .gsi-material-button-state,
.button-common:not(:disabled):focus .gsi-material-button-state {
    background-color: #001d35;
    opacity: 12%;
}

.button-common:not(:disabled):hover .gsi-material-button-state {
    background-color: #001d35;
    opacity: 8%;
}

#loginLink, #registerLink, #forgotPasswordLink {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    grid-column: span 2;
    text-align: center;
    margin-top: 20px;

}

#loginLink:hover, #registerLink:hover, #forgotPasswordLink:hover {
    text-decoration: underline;
}

#forgotPasswordForm {
    margin-left: -20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 600px;
    gap: 15px;
    padding: 20px;
}

#forgotPasswordForm .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
}

#forgotPasswordForm label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

#forgotPasswordForm input {
    width: 100%;
    height: 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    background: #FFFFFF;
    box-shadow: 0px 4px 29px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: none;
    padding: 10px;
    outline: none;
}

#forgotPasswordForm input:focus {
    outline: none;
}

/* Google Buttons */
.gsi-material-button {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    appearance: none;
    -webkit-appearance: none;
    background-color: #414141;
    background-image: none;
    border: none;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    font-family: 'Roboto', arial, sans-serif;
    font-size: 14px;
    height: 40px;
    letter-spacing: 0.25px;
    outline: none;
    overflow: hidden;
    padding: 0 12px;
    position: relative;
    text-align: center;
    -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
    transition: background-color .218s, border-color .218s, box-shadow .218s;
    vertical-align: middle;
    white-space: nowrap;
    width: 150px;
    max-width: 400px;
    min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
    height: 20px;
    margin-right: 12px;
    min-width: 20px;
    width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
    -webkit-align-items: center;
    align-items: center;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
    -webkit-transition: opacity .218s;
    transition: opacity .218s;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.gsi-material-button:disabled {
    cursor: default;
    background-color: #ffffff61;
}

.gsi-material-button:disabled .gsi-material-button-state {
    background-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
    opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
    opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
    background-color: #001d35;
    opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
    -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
    background-color: #001d35;
    opacity: 8%;
}

.crowded-field-form {
    display: grid;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Pricing table style */
.flash-messages .alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    max-width: 816px;
}

.flash-messages .alert-success {
    color: #595959 !important;
    background-color: #D9D9D9 !important;
    border-color: #595959 !important;
}

.flash-messages .alert-danger {
    color: #595959 !important;
    background-color: #D9D9D9 !important;
    border-color: #595959 !important;
}

.flash-messages .alert br {
    content: "";
    display: block;
    margin-bottom: 15px;
}

/* Pricing table style */
.section-title {
    font-size: 16px;
    margin: 30px;
    color: #000;
}

/* Plan Card Styles */
.plan-sections {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Full-width sections with alignment */
.trial-section, .single-use-section, .add-ons {
    flex: 1 1 calc(50% - 16px);
}

/* Plan and Add-on Card Styles */
.plan-card {
    flex: 1 1 calc(50% - 16px);
    background-color: #fff;
    border: 0.5px solid #000;
    border-radius: 10px;
    padding: 30px;
    transition: box-shadow 0.1s ease, background-color 0.3s ease;
    cursor: pointer;
}

/* Plan Card and Hover Styles */
.plan-card:hover{
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.plan-card h4 {
    font-size: 16px;
    margin-bottom: 30px;
    color: #000;
}

.plan-details label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.plan-details input[type="radio"], .plan-details input[type="checkbox"] {
    display: none;
}

.plan-details label {
    display: block;
    padding: 15px;
    border: 0.5px solid #000;
    border-radius: 10px;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.plan-details label:hover, .plan-details label:hover{
    background-color: #f1f1f1;
    color: #000;
    border: 0.5px solid #000;
}

.plan-details input[type="radio"]:checked + label, .plan-details input[type="checkbox"]:checked + label {
    background-color: #d4d4d4;
    color: #000;
    border: 0.5px solid #000;
}

.plan-details h5 {
    font-size: 14px;
    text-align: left;
    margin: 0;
    color: #000;
    transition: color 0.3s ease;
}

.plan-details p {
    margin: 4px 0 0;
    font-size: 12px;
    color: #000;
    transition: color 0.3s ease;
}

/* Styling for List Elements in Add-ons */
.plan-details ul {
    margin: 8px 0 0;
    padding-left: 20px;
    list-style-type: disc;
}

.plan-details ul li {
    font-size: 12px;
    margin-bottom: 4px;
    color: #000;
}

.plan-details ul li::marker {
    font-size: 8px;
}

.tsdr-h5::before {
    content: "+";
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-right: 8px;
}

/* Promo Code Input */
.promo-code {
    margin-bottom: 20px;
}

.promo-code label {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.promo-code input {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
}

.promo-code input:focus {
    outline: none;
    box-shadow: none;
    border-color: #000;
}

/* Total Price Display */
.total-price-container {
    background-color: #f1f1f1;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    color: #000;
}

.total-price-container p {
    margin: 0;
    color: #000;
}

/* Separator Line */
.section-separator {
    border-top: 0.5px solid #000;
    margin: 50px;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .plan-card, .trial-section, .add-ons, .single-use-section {
        flex: 1 1 100%;
    }
}

.add-ons .plan-details {
    margin: 0 auto;
    margin-bottom: 35px;
}

.add-ons .plan-details label {
    margin: 0 auto;
}

.add-ons .plan-details .feature-info h5 {
    font-size: 14px;
    margin-bottom: 15px;
}

.add-ons .plan-details .feature-info p {
    margin: 0 auto 35px auto;
    font-size: 12px;
    line-height: 1.4;
}

.add-ons .plan-details .tsdr-h5 {
    margin-top: 35px;
}

/* Remove plus sign from first h5 */
.add-ons .plan-details .tsdr-h5:first-child::before {
    margin-top: 0;
}

/* Crowded field form styles */
#crowdedFieldForm {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

#goodsServicesForm {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.inline-group .input-group > input,
.inline-group .input-group > .crowded-dropdown-toggle {
    height: 40px;
    padding: 8px;
    font-size: 14px;
    border: none;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

/* Grouping term input and class selection side by side */
.inline-group {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

.input-group {
    display: flex;
    flex-direction: column;
    flex: 0;
    width: auto;
    max-width: 500px;
}

/* Dropdown styling for class selection */
#classSelect, #classSelect1, #classSelect2 {
    appearance: none;
    padding: 8px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    background-color: #E4E5E1;
    cursor: pointer;
    width: 200px;
    max-width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

/* Styling for text input */
#crowdedFieldForm input[type="text"],
#crowdedFieldForm select {
    padding: 8px;
    border-radius: 10px;
    font-size: 1rem;
}

#crowdedFieldForm input[type="text"] {
    width: 200px;
    max-width: 100%;
}

#crowdedFieldForm input[type="text"],
#classSelect, #classSelect1, #classSelect2 {
    height: 40px;
}

/* Report Styles */
/* Container for all filter sections */
/* Wrapper for description and toggle */
.description-wrapper {
    position: relative;
    max-width: 700px;
    margin-top: 20px;
    margin-bottom: 80px;
}

/* Default hidden description */
.description {
    background-color: #f1f1f1;
    font-size: 14px;
    margin-top: 10px;
    padding: 30px 80px 30px 30px;
    border-radius: 0%;
    position: relative;
    display: none;
}

/* Hide button inside the description */
.hide-description {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: 2px solid #607f75;
    border-radius: 0%;
    color: #607f75;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hide-description:hover {
    opacity: 0.6;
}

/* "?" button */
.toggle-description {
    background-color: transparent;
    border: 2px solid #607f75;
    border-radius: 0%;
    color: #607f75;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.toggle-description:hover {
    opacity: 0.6;
}


.disclaimer {
    font-size: 12px;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-left: 5px;
    max-width: 700px;
}

.steps-section {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 10px;
}

.steps-section label {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

.steps-section .fa-caret-down {
    font-size: 14px;
    cursor: pointer;
    color: #607f75;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.filter-section {
    flex: 1 1 200px;
    min-width: 250px;
    max-width: 275px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #ffffff;
}

.filter-section label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
}

.filter-section h6 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

.steps-section input[type="text"] {
    background-color: rgba(96, 127, 117, 0.3);
    font-size: 12px;
    color: #000;
    border: none;
    outline: none;
    border-radius: 15px;
    padding: 8px 12px;
    width: 100%;
    height: 30px;
    line-height: 1.0;
    box-sizing: border-box;
    appearance: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: center;
}

/* Hide default calendar icon on WebKit browsers */
.steps-section input[type="text"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    display: inline-block;
}

.filter-section select {
    background-color: #f1f1f1;
    font-size: 14px;
    color: #595959;
    border: none;
    outline: none;
    border-radius: 15px;
    padding: 8px 12px;
    width: 100%;
    height: 30px;
    line-height: 1.0;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24'%3E%3Cpath fill='%23595959' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center; /* Position the arrow */
    background-size: 12px; /* Size the arrow */
}

.filter-section select:focus {
    outline: none;
}

.filter-section input[type="text"] {
    background-color: #f1f1f1;
    font-size: 14px;
    border: none;
    outline: none;
    border-radius: 15px;
    padding: 8px 12px;
    width: 100%;
    height: 30px;
    box-sizing: border-box;
}

.filter-section input[type="text"]::placeholder {
    font-size: 14px;
    color: #595959;
}

.filter-section input[type="text"]:focus {
    outline: none;
}

.reset-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
    margin-bottom: 5px;
    width: 90%;
}

/* Table wrapper */
.table-wrapper {
    min-height: 400px;
    max-height: 400px;
    width: 95%;
    margin-top: 10px;
    overflow-y: auto;
    padding: 10px;
}

/* Remove all gradient backgrounds */
.google-visualization-table-th.gradient,
.google-visualization-table-td.gradient,
.google-visualization-table-div-page.gradient,
.google-visualization-table-page-number.gradient {
    background-image: none !important;
}

/* Table headers */
.google-visualization-table-th,
#table_div .google-visualization-table-th,
#crowdedFieldResults .google-visualization-table-th,
#goodsServicesResults .google-visualization-table-th {
    background-color: #CBCBCB !important;
    background-image: none;
    color: #000 !important;
    font-weight: bold !important;
}

/* Table cells */
.google-visualization-table-td,
#table_div .google-visualization-table-td,
#crowdedFieldResults .google-visualization-table-td,
#goodsServicesResults .google-visualization-table-td {
    background-color: #ffffff !important;
    color: #333333 !important;
}

/* Hover effect for table rows */
.google-visualization-table-tr:hover .google-visualization-table-td,
#table_div .google-visualization-table-tr:hover .google-visualization-table-td,
#crowdedFieldResults .google-visualization-table-tr:hover .google-visualization-table-td,
#goodsServicesResults .google-visualization-table-tr:hover .google-visualization-table-td {
    background-color: #f1f1f1 !important;
}

/* Email column width */
#table_div .google-visualization-table-td:nth-child(2),
#table_div .google-visualization-table-th:nth-child(2) {
    width: 200px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Pagination container */
.google-visualization-table-div-page,
#table_div .google-visualization-table-div-page,
#crowdedFieldResults .google-visualization-table-div-page,
#goodsServicesResults .google-visualization-table-div-page {
    background-color: #ffffff;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Pagination numbers */
.google-visualization-table-page-number,
#table_div .google-visualization-table-page-number,
#crowdedFieldResults .google-visualization-table-page-number,
#goodsServicesResults .google-visualization-table-page-number {
    background-color: #ffffff;
    color: #607f75;
    background-image: none;
    padding: 5px 10px;
    border-radius: 10%;
    cursor: pointer;
    margin: 2px;
}

/* Pagination hover effect */
.google-visualization-table-page-number:hover,
#table_div .google-visualization-table-page-number:hover,
#crowdedFieldResults .google-visualization-table-page-number:hover,
#goodsServicesResults .google-visualization-table-page-number:hover {
    background-color: rgba(96, 127, 117, 0.6);
}

/* Pagination buttons */
.google-visualization-table-div-page .goog-custom-button {
    background-color: #ffffff !important;
    color: #607f75 !important;
    background-image: none !important;
    border: none !important;
    border-radius: 10% !important;
    padding: 5px 5px !important;
    margin: 2px !important;
    cursor: pointer !important;
}

/* Pagination buttons hover */
.google-visualization-table-div-page .goog-custom-button:hover {
    background-color: rgba(96, 127, 117, 0.6) !important;
}

/* Pagination prev/next icons */
.google-visualization-table-div-page .goog-custom-button .google-visualization-table-page-prev,
.google-visualization-table-div-page .goog-custom-button .google-visualization-table-page-next {
    background-color: transparent !important;
    font-size: 20px !important;
    color: #607f75 !important;
}

/* Override Google's default pagination styles */
.google-visualization-table-div-page {
    background: #ffffff !important;
    border: none !important;
}

/* Additional button overrides for pagination */
.goog-custom-button,
.goog-custom-button-outer-box,
.goog-custom-button-inner-box,
.goog-custom-button.goog-custom-button-collapse-right,
.goog-custom-button.goog-custom-button-collapse-left {
    background: #ffffff !important;
    border: none !important;
    background-color: #ffffff !important;
    background-image: none !important;
    box-shadow: none !important;
}

/* Disabled button states */
.goog-custom-button-disabled {
    background: #ffffff !important;
    background-color: #ffffff !important;
    opacity: 0.5;
}

/* Override any hover states */
.goog-custom-button:hover,
.goog-custom-button-hover {
    background: #ffffff !important;
    background-color: rgba(96, 127, 117, 0.6) !important;
    border: none !important;
}

/* Style for current page */
.google-visualization-table-page-number.current {
    background-color: rgba(96, 127, 117, 0.6) !important;
    color: #000000 !important;
}

/* Additional specificity for pagination container */
.google-visualization-table > div > .google-visualization-table-div-page {
    background: #ffffff !important;
    border: none !important;
}

.tsdr-tools {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
    width: 90%;
}

.export-button, .clear-filters-btn, .update-button {
    padding: 8px 16px;
    font-size: 12px;
    cursor: pointer;
    border: none;
    background-color: #607f75;
    color: #000;
    border-radius: 10px;
    margin: 2px;
}

.export-button:hover, .clear-filters-btn:hover, .update-button:hover {
    background-color: rgba(96, 127, 117, 0.3);
}

/* Target only checkboxes within the filters div */
.filters input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    cursor: pointer;
    position: relative;
    background-color: #E4E5E1;
    display: inline-block;
    margin-right: 10px;
    transition: background-color 0.2s ease-in-out;
}

/* Hover effect with 30% opacity of #607f75 */
.filters input[type="checkbox"]:hover {
    background-color: rgba(96, 127, 117, 0.4);
}

/* Checked state with full background #607f75 */
.filters input[type="checkbox"]:checked {
    background-color: #607f75;
}

/* Checkmark inside the checkbox */
.filters input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 15px;
    color: #000;
}






