/* Reset e fontes */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    background-color: #ffffff;
    color: #111;
}

.spaceGrotesk {
    font-family: 'Space Grotesk';
}

/* Navbar */
.navbar {
    /*position: relative;*/
    background: #f9fbfc;
    /*padding: 0.3rem 3rem;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*border-bottom: 1px solid #eaeaea;*/
    z-index: 10; /* Garante que o menu fique acima de outros elementos */
    padding-top: 0rem !important;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.dropdown {
    position: relative;
    display: inline-block;
}

    .dropdown button {
        background: none;
        border: none;
        font-size: 16px;
        cursor: pointer;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 300px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: black;
}

    .dropdown-content a:hover {
        background-color: #f1f1f1;
    }

.dropdown-menu-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.dropdown-menu-item span {
    display: block;
    font-size: 13px;
    color: #666;
}

.logo {
    height: 72px;
}

.menu {
    position: relative;
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

    .menu a,
    .menu button {
        background: none;
        border: none;
        font-size: 1rem;
        color: #1d1d1f;
        cursor: pointer;
        font-family: inherit;
        font-weight: 500;
    }

        .menu a.active {
            color: #249a6c;
            font-weight: 600;
            text-decoration: none;
        }

/*.menu button::after {
  content: '▾';
  margin-left: 0.3rem;
  font-size: 0.8rem;
  color: #1d1d1f;
}*/

.portal-button {
    background: #00e28a;
    color: #000;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
}

/* Hero */
.hero {
    padding: 1rem 2rem;
    text-align: center;
    /*background: linear-gradient(to right, #ffffff 0%, #d2f2e0 50%, #ffffff 100%);*/
}

    .hero h1 {
        font-size: 2.1rem;
        font-weight: 700;
        color: #0b2e2f;
        margin-bottom: 0.3rem;
    }

    .hero p {
        color: #555;
        font-size: 0.87rem;
        margin-bottom: 2rem;
    }

.hero-search {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

    .hero-search div {
        width: 33%;
        text-align: left;
    }

    .hero-search div input {
        padding: 0.9rem 1.2rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 1rem;
        font-family: inherit;
    }

    .hero-search button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        background-color: #d1e7dc;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        font-family: inherit;
    }

.hero-tags {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .hero-tags span {
        background-color: #eaeff1;
        color: #333;
        padding: 0.5rem 0.9rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .hero-tags .label {
        font-weight: 500;
        color: #1d1d1f;
        margin-right: 0.5rem;
        background: transparent;
    }

.tag-button {
    background-color: #d3e8dd; /* cor suave da tag */
    color: #1d1d1f; /* cor do texto */
    border: none;
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: 600 !important;
    transition: background-color 0.2s ease;
}

    .tag-button:hover {
        background-color: #cdebdc; /* cor um pouco mais escura no hover */
    }

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    justify-content: center;
}

    .cards-grid .card {
        background-color: #f2fbf8;
        border:none;
        height: 120px;
    }

.card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none; /* remove borda padrão do botão */
    cursor: pointer; /* cursor de ponteiro */
    font-family: inherit; /* herda fonte do contexto */
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    }

.card-title {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
}

.card-icon {
    margin-bottom: 12px;
    /* se quiser, ajuste tamanho da imagem aqui */
}

/* Notícias */
.notices-section {
    padding: 2rem;
    background-color: #f5f5f5;
    position: relative;
}

.notices-section-main-index {
    padding: 1rem;
    background-color: #f5f5f5;
    position: relative;
    background: linear-gradient(to sides, blue, black 400px);
    background-image: url('../images/hero-bg.svg'), repeating-linear-gradient(to right, #ffffff 0%, #d2f2e0 50%, #ffffff 100%);
}

.notices-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #212121;
}

.notices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    grid-template-areas:
        "main side1"
        "main side2";
}

.notice-main {
    grid-area: main;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

    .notice-main img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

.notice-main-content {
    padding: 1rem;
}

    .notice-main-content span {
        font-size: 0.75rem;
        color: #888;
    }

    .notice-main-content h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin: 0.5rem 0;
        color: #1d1d1f;
    }

    .notice-main-content p {
        font-size: 1rem;
        color: #444;
    }

.notice-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    padding: 1rem;
}

.notice-image {
    flex: 0 0 40%;
    max-width: 40%;
}

    .notice-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

.notice-text {
    flex: 1;
    padding: 10px;
}

    .notice-text span {
        font-size: 0.75rem;
        color: #888;
    }

    .notice-text h4 {
        font-size: 1.3rem;
        font-weight: 600;
        margin: 0.3rem 0;
        color: #1d1d1f;
    }

    .notice-text p {
        font-size: 1rem;
        color: #444;
    }

    .notice-text a {
        color: #249a6c;
        font-size: 1rem;
        text-decoration: none;
        font-weight: 500;
    }

.chat-button {
    position: absolute;
    top: 1rem;
    right: 19rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    border: none; /* remove a borda padrão do botão */
    cursor: pointer; /* cursor de mãozinha para indicar clicável */
}

/* Footer */
.footer {
    background: #083b2d;
    color: #d0e9de;
    padding: 2rem;
    font-size: 0.85rem;
    font-family: "Inter", sans-serif;
}

.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 35px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

    .social-icons a img {
        height: 24px;
        width: 24px;
        filter: brightness(0) invert(1);
        transition: opacity 0.2s;
    }

    .social-icons a:hover img {
        opacity: 0.7;
    }

.footer-top {
    /*display: grid;*/
    /*grid-template-columns: repeat(5, 1fr);*/
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #409A65;
}

/* Ajuste para links no footer - cor padrão e sem mudança após clique */
.footer-column a,
.footer-column a:visited {
    color: #d0e9de;
    text-decoration: none;
    transition: color 0.2s;
}

    .footer-column a:hover {
        color: #43c59e;
        text-decoration: none;
    }

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li,
.footer-column p {
    margin-bottom: 0.3rem;
}

.portal-button-footer {
    background: transparent;
    color: #409A65;
    border: 1px solid #409A65;
    background-color: rgb(64, 154, 101, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin: 1rem auto; /* centraliza horizontalmente */
    /*max-width: 800px;*/ /* define um limite de largura */
    border: 1px solid #409A65;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    background-color: rgba(64, 154, 101, 0.05);
    text-align: center;
    margin-top: 280px;
}

    .footer-bottom div {
        flex: 1;
    }

    .footer-bottom p {
        margin: 0;
    }

    .footer-bottom strong {
        color: #409A65;
    }


.footer-copy {
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.7;
}


/* Redes sociais */

.social-column {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

    .social-icons a img {
        height: 24px;
        width: 24px;
        filter: brightness(0) invert(1);
        transition: opacity 0.2s;
    }

    .social-icons a:hover img {
        opacity: 0.7;
    }

/* ===== CONTRATOS PAGE STYLES ===== */

/* Main contratos page container */
.contratos-page {
    min-height: calc(100vh - 200px);
    background-color: #ffffff;
}

.login-container {
    width: 520px;
    min-height: 607px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px 0px #0D386D1F;
    background-color: #F8FAFC;
    display: flex;
    flex-direction: column;
    margin-left: auto;
}

/* Gradient header */
.gradient-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 457px;
    background: linear-gradient(96deg, #009d3c 0%, #008f37 100%);
}

.loginWidget {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

/* Logo section */
.logo-section {
    margin-bottom: 24px;
}

.logo {
    width: 203px;
    height: 64px;
}

/* Content wrapper */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

/* Page title */
.page-title {
    color: #212b36;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    width: 100%;
}

/* Form styles */
.login-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.form-group {
    width: 100%;
    position: relative;
    margin-bottom: 4px;
}

.input-wrapper {
    position: relative;
    width: 100%;
    height: 54px;
}

.form-input {
    width: 100%;
    height: 54px;
    padding: 0 14px;
    border: 1px solid rgba(145, 158, 171, 0.2);
    border-radius: 8px;
    font-family: "Public Sans", sans-serif;
    font-size: 14px;
    color: #919eab;
    background: transparent;
}

.floating-label {
    position: absolute;
    top: -8px;
    left: 14px;
    padding: 0 2px;
    color: #637381;
    font-size: 12px;
    font-weight: 600;
    background-color: #fff;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #637381;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

/* Links */
.forgot-password {
    color: #212b36;
    font-size: 14px;
    text-decoration: underline;
    width: 100%;
    text-align: right;
    margin: -4px 0 0;
}

/* Buttons */
.primary-button {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: "Public Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    background-color: #00a76f;
}

.social-button {
    width: 100%;
    height: 60px;
    border: 1.5px solid #00A76F;
    border-radius: 68px;
    margin-top: 8px;
    cursor: pointer;
    background-color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none !important;
}

    .social-button span {
        color: #00A76F;
    }

    .social-button:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(-5px);
    }

/* Sign up prompt */
.signup-prompt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    font-size: 14px;
}

    .signup-prompt span {
        color: #212b36;
    }

.signup-link {
    color: #00a76f;
    font-weight: 600;
    text-decoration: none;
}


@media (max-width: 640px) {
    .gradient-header {
        height: 300px;
    }
}

/* Page container */
.page-container {
    padding: 12px 16px;
}

@media (max-width: 100%) {
    .page-container {
        padding: 24px 20px;
    }
}

/* Breadcrumb navigation */
.breadcrumb-nav {
    display: flex;
    width: 100%;
    padding: 10px 0;
    align-items: center;
    gap: 8px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    color: #212b36;
    font-weight: 400;
    line-height: 2;
    justify-content: start;
}

@media (max-width: 991px) {
    .breadcrumb-nav {
        max-width: 100%;
    }
}

.breadcrumb-stack {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    flex: 1;
}

@media (max-width: 991px) {
    .breadcrumb-stack {
        max-width: 100%;
    }
}

.breadcrumb-links {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 15px;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .breadcrumb-links {
        max-width: 100%;
    }
}

.breadcrumb-link {
    color: #212b36;
    text-decoration: none;
    align-self: stretch;
    margin: auto 0;
    gap: 4px;
}

    .breadcrumb-link:hover {
        text-decoration: underline;
    }

.breadcrumb-current {
    color: #919eab;
    text-overflow: ellipsis;
    align-self: stretch;
    flex: 1;
    min-width: 240px;
    margin: auto 0;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
}

@media (max-width: 991px) {
    .breadcrumb-current {
        max-width: 100%;
        white-space: initial;
    }
}

/* Page header */
.page-header {
    border-radius: 8px;
    background-color: rgba(246, 255, 252, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    margin-top: 10px;
    width: 100%;
    padding: 10px 64px 10px 10px;
    align-items: center;
    gap: 40px 100px;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    color: rgba(13, 61, 47, 1);
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .page-header {
        max-width: 100%;
        padding-right: 20px;
    }
}

.header-content {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    align-items: center;
    justify-content: start;
    width: 1105px;
}

@media (max-width: 991px) {
    .header-content {
        max-width: 100%;
    }
}

.header-text {
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    width: 100%;
    flex: 1;
}

@media (max-width: 991px) {
    .header-text {
        max-width: 100%;
    }
}

.page-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .page-title {
        max-width: 100%;
    }
}

.page-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 8px;
}

@media (max-width: 991px) {
    .page-description {
        max-width: 100%;
    }
}

.header-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 77px;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
}

/* Filters section */
.filters-section {
    margin-top: 10px;
    width: 100%;
}

@media (max-width: 991px) {
    .filters-section {
        max-width: 100%;
    }
}

.filters-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-row {
    display: flex;
    width: 100%;
    padding: 10px 0;
    align-items: center;
    gap: 16px;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .filter-row {
        max-width: 100%;
    }
}

/* Select fields */
.select-field {
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    flex: 1;
}

@media (max-width: 991px) {
    .select-field {
        max-width: 100%;
    }
}

.field-wrapper {
    align-items: start;
    border-radius: 8px;
    border: 1px solid var(--text-disabled, #919eab);
    position: relative;
    display: flex;
    min-height: 54px;
    width: 100%;
    justify-content: start;
    height: 54px;
    padding: 0 14px;
}

@media (max-width: 991px) {
    .field-wrapper {
        max-width: 100%;
    }
}

.field-value {
    color: #212b36;
    text-overflow: ellipsis;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    align-self: stretch;
    z-index: 0;
    margin: auto 0;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .field-value {
        max-width: 100%;
    }
}

.field-label-focused {
    position: absolute;
    z-index: 0;
    display: flex;
    padding: 0 2px;
    align-items: center;
    gap: 2px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 12px;
    color: #637381;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
    justify-content: start;
    left: 14px;
    top: -5px;
}

@media (max-width: 991px) {
    .field-label-focused {
        white-space: initial;
    }
}

.label-mask {
    align-self: start;
    position: absolute;
    z-index: 0;
    display: flex;
    flex-shrink: 0;
    height: 2px;
    left: 0;
    right: 0;
    bottom: 2px;
    width: 71px;
    background-color: #fff;
}

.status-mask {
    width: 42px;
}

.orgao-mask {
    width: 39px;
}

.field-label {
    color: #637381;
    z-index: 0;
    margin: auto 0;
}

.field-endornment {
    position: absolute;
    z-index: 0;
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    height: 40px;
}

.select-arrow {
    padding-right: 10px;
    align-items: center;
    position: absolute;
    z-index: 0;
    display: flex;
    justify-content: start;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    width: 30px;
}

.arrow-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 20px;
    align-self: stretch;
    margin: auto 0;
    height: 20px;
}

/* Input fields */
.input-field {
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    color: #637381;
    font-weight: 400;
    line-height: 2;
    flex: 1;
}

.input-wrapper {
    align-items: flex-start;
    border-radius: 8px;
    border: 1px solid var(--text-disabled, #919eab);
    position: relative;
    display: flex;
    min-height: 54px;
    width: 100%;
    gap: 40px 100px;
    justify-content: start;
    height: 54px;
    padding: 0 14px;
}

.input-value {
    color: #637381;
    text-overflow: ellipsis;
    z-index: 0;
    margin: auto 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    flex: 1;
}

    .input-value::placeholder {
        color: #637381;
    }

.input-endornment {
    align-self: start;
    position: absolute;
    z-index: 0;
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    width: 40px;
    height: 40px;
}

.date-icon-wrapper {
    justify-content: center;
    align-items: center;
    border-radius: 500px;
    align-self: stretch;
    display: flex;
    margin: auto 0;
    min-height: 40px;
    width: 40px;
    height: 40px;
}

.date-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 24px;
    align-self: stretch;
    margin: auto 0;
    height: 24px;
}

/* Buttons */
.clear-button {
    color: #212b36;
    align-self: stretch;
    min-width: 64px;
    border-radius: 8px;
    margin: auto 0;
    min-height: 54px;
    gap: 8px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 26px;
    padding: 0 16px;
    background-color: rgba(145, 158, 171, 0.08);
    border: none;
    cursor: pointer;
}

    .clear-button:hover {
        background-color: rgba(145, 158, 171, 0.12);
    }

.filter-button {
    color: #fff;
    align-self: stretch;
    min-width: 64px;
    border-radius: 8px;
    margin: auto 0;
    min-height: 54px;
    gap: 8px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 26px;
    width: 125px;
    padding: 0 16px;
    background-color: #00a76f;
    border: none;
    cursor: pointer;
}

    .filter-button:hover {
        background-color: #007854;
    }

@media (max-width: 991px) {
    .filter-button {
        white-space: initial;
    }
}

/* Table section */
.table-section {
    display: flex;
    margin-top: 10px;
    width: 100%;
    align-items: center;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    color: #212b36;
    font-weight: 400;
    line-height: 2;
    justify-content: start;
}

@media (max-width: 991px) {
    .table-section {
        max-width: 100%;
    }
}

.table-container {
    border-radius: 8px;
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    width: 100%;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    justify-content: center;
    flex: 1;
}

@media (max-width: 991px) {
    .table-container {
        max-width: 100%;
    }
}

/* Table styles */
.contracts-table {
    width: 100%;
    border-collapse: collapse;
}

.table-header {
    background-color: #f4f6f8;
}

.header-row {
    display: flex;
    width: 100%;
    align-items: center;
    color: #637381;
    font-weight: 600;
    line-height: 24px;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .header-row {
        max-width: 100%;
    }
}

.table-cell {
    align-items: center;
    align-self: stretch;
    display: flex;
    margin: auto 0;
    justify-content: start;
    width: 160px;
}

.header-cell {
    background-color: #f4f6f8;
}

.seq-column {
    width: auto;
    text-align: left;
}

.object-column {
    min-width: 240px;
    flex: 1;
}

.organ-column {
    min-width: 240px;
    width: 385px;
}

.publication-column {
    width: 148px;
}

.modality-column {
    width: 149px;
}

.status-column {
    width: 132px;
}

.header-content {
    align-items: center;
    align-self: stretch;
    display: flex;
    margin: auto 0;
    width: 100%;
    gap: 4px;
    justify-content: start;
    flex: 1;
    /*padding: 16px;*/
}

.header-text {
    color: #637381;
    align-self: stretch;
    margin: auto 0;
    flex: 1;
}

.sort-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 16px;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
}

/* Table body */
.table-body {
    background-color: #fff;
}

.table-row {
    align-items: center;
    border-bottom: 1px dashed rgba(145, 158, 171, 0.2);
    display: flex;
    width: 100%;
    justify-content: start;
    flex-wrap: wrap;
    background-color: #fff;
}

@media (max-width: 991px) {
    .table-row {
        max-width: 100%;
    }
}

.data-cell {
    align-self: stretch;
    display: flex;
    margin: auto 0;
    align-items: center;
    justify-content: start;
}

.object-cell {
    min-width: 240px;
    flex: 1;
}

.organ-cell {
    min-width: 240px;
    width: 385px;
}

.cell-content {
    align-items: center;
    align-self: stretch;
    display: flex;
    margin: auto 0;
    justify-content: start;
    padding: 16px 0;
}

.cell-text {
    color: #212b36;
    align-self: stretch;
    margin: auto 0;
    padding: 0 16px;
}

.status-cell {
    align-items: center;
    align-self: stretch;
    display: flex;
    margin: auto 0;
    font-size: 12px;
    color: #b76e00;
    font-weight: 700;
    text-align: center;
    line-height: 2;
    justify-content: start;
    padding: 16px;
}

.status-label {
    color: #b76e00;
    align-self: stretch;
    min-width: 24px;
    border-radius: 6px;
    margin: auto 0;
    min-height: 24px;
    gap: 6px;
    height: 24px;
    padding: 0 6px;
    background-color: rgba(255, 171, 0, 0.16);
}

/* Table pagination */
.table-pagination {
    display: flex;
    min-height: 58px;
    width: 100%;
    padding: 11px 8px 11px 16px;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    justify-content: end;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .table-pagination {
        max-width: 100%;
    }
}

.overflow-x-table {
    overflow-x: auto;
    width: 100%;
}

.pagination-label {
    color: #212b36;
    text-align: right;
    align-self: stretch;
    margin: auto 0;
    flex: 1;
}

@media (max-width: 991px) {
    .pagination-label {
        max-width: 100%;
    }
}

.pagination-select {
    align-self: stretch;
    display: flex;
    margin: auto 0;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    justify-content: start;
}

@media (max-width: 991px) {
    .pagination-select {
        white-space: initial;
    }
}

.select-value {
    color: #212b36;
    align-self: stretch;
    margin: auto 0;
}

.select-arrow-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 16px;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
}

.pagination-info {
    color: #212b36;
    align-self: stretch;
    margin: auto 0;
}

.pagination-controls {
    aspect-ratio: 2;
    object-fit: contain;
    object-position: center;
    width: 72px;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .seq-column {
        white-space: initial;
    }

    .object-column {
        white-space: initial;
    }

    .organ-column {
        white-space: initial;
    }

    .publication-column {
        white-space: initial;
    }

    .modality-column {
        white-space: initial;
    }

    .status-column {
        white-space: initial;
    }

    .cell-text {
        white-space: initial;
    }
}

/* Buttons */
.clear-button {
    color: #212b36;
    align-self: stretch;
    min-width: 64px;
    border-radius: 8px;
    margin: auto 0;
    min-height: 54px;
    gap: 8px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 26px;
    padding: 0 16px;
    background-color: rgba(145, 158, 171, 0.08);
    border: none;
    cursor: pointer;
}

    .clear-button:hover {
        background-color: rgba(145, 158, 171, 0.12);
    }

.filter-button {
    color: #fff;
    align-self: stretch;
    min-width: 64px;
    border-radius: 8px;
    margin: auto 0;
    min-height: 54px;
    gap: 8px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 26px;
    width: 125px;
    padding: 0 16px;
    background-color: #00a76f;
    border: none;
    cursor: pointer;
}

    .filter-button:hover {
        background-color: #007854;
    }
/* CONTRATOS PAGE STYLES END*/
/* ===== SUPPLIER REGISTRATION FORM STYLES START ===== */

/* Information Section */
.supplier-info-section {
    border-radius: 8px;
    background-color: rgba(246, 255, 252, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    margin-top: 10px;
    width: 100%;
    padding: 16px 64px 16px 16px;
    align-items: center;
    gap: 16px;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    color: #007867;
    font-weight: 700;
    line-height: 1.6;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .supplier-info-section {
        max-width: 100%;
        padding-right: 20px;
    }
}

.supplier-info-label {
    color: rgba(13, 61, 47, 1);
    font-weight: 400;
    align-self: stretch;
    margin: auto 0;
}

.supplier-info-link {
    color: #007867;
    text-overflow: ellipsis;
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    gap: 8px;
    text-decoration: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

    .supplier-info-link:hover {
        text-decoration: underline;
    }

/* Form Container */
.supplier-form-container {
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    margin-top: 10px;
    width: 100%;
    padding: 32px;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
}

@media (max-width: 991px) {
    .supplier-form-container {
        max-width: 100%;
        padding: 20px;
    }
}

/* Person Type Selector */
.supplier-person-type-selector {
    align-self: start;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 2;
    justify-content: start;
}

.supplier-person-type-btn {
    align-self: stretch;
    min-width: 64px;
    border-radius: 8px;
    margin: auto 0;
    min-height: 30px;
    gap: 8px;
    padding: 0 8px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.supplier-person-type-btn--active {
    color: #fff;
    background-color: #00a76f;
}

.supplier-person-type-btn--inactive {
    color: #007867;
    background-color: rgba(0, 167, 111, 0.08);
}

/* Form Sections */
.supplier-form-section {
    margin-top: 24px;
    width: 100%;
    border: none;
    padding: 0;
}

@media (max-width: 991px) {
    .supplier-form-section {
        max-width: 100%;
    }
}

.supplier-section-title {
    color: #919eab;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 991px) {
    .supplier-section-title {
        max-width: 100%;
    }
}

/* Field Size Modifiers */
.supplier-field-small {
    width: 161px;
}

.supplier-field-xsmall {
    width: 123px;
}

.supplier-field-medium {
    width: 297px;
}

.supplier-field-large {
    width: 599px;
    min-width: 240px;
}

.supplier-field-xlarge {
    width: 799px;
    min-width: 240px;
}

@media (max-width: 991px) {
    .supplier-field-small,
    .supplier-field-xsmall,
    .supplier-field-medium,
    .supplier-field-large,
    .supplier-field-xlarge {
        width: 100%;
        max-width: 100%;
    }
}

/* Documentation Section */
.supplier-documentation-header {
    width: 100%;
}

@media (max-width: 991px) {
    .supplier-documentation-header {
        max-width: 100%;
    }
}

.supplier-documentation-note {
    color: #919eab;
    text-overflow: ellipsis;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* Info Boxes */
.supplier-info-box {
    align-self: stretch;
    flex: 1;
    border-radius: 8px;
    background-color: rgba(246, 255, 252, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    width: 100%;
    padding: 16px;
    gap: 16px;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    color: rgba(13, 61, 47, 1);
    font-weight: 400;
    line-height: 22px;
}

@media (max-width: 991px) {
    .supplier-info-box {
        max-width: 100%;
    }
}

/* File Upload Section */
.supplier-file-upload-section {
    display: flex;
    margin-top: 8px;
    width: 100%;
    padding: 10px 0;
    flex-direction: column;
    align-items: stretch;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    justify-content: center;
}

@media (max-width: 991px) {
    .supplier-file-upload-section {
        max-width: 100%;
    }
}

.supplier-file-upload-item {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    justify-content: start;
    flex-wrap: wrap;
}

    .supplier-file-upload-item:not(:first-child) {
        margin-top: 16px;
    }

@media (max-width: 991px) {
    .supplier-file-upload-item {
        max-width: 100%;
    }
}

.supplier-file-upload-btn {
    min-width: 64px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgba(0, 167, 111, 0.48);
    align-self: stretch;
    display: flex;
    margin: auto 0;
    min-height: 30px;
    gap: 8px;
    font-size: 13px;
    color: #00a76f;
    font-weight: 700;
    line-height: 2;
    padding: 0 8px;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.supplier-upload-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 16px;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
}

.supplier-upload-label {
    color: #00a76f;
    align-self: stretch;
    margin: auto 0;
}

.supplier-file-status {
    color: #919eab;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    align-self: stretch;
    margin: auto 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* Terms Notice */
.supplier-terms-notice {
    align-self: stretch;
    flex: 1;
    border-radius: 8px;
    background-color: rgba(242, 242, 242, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 24px;
    width: 100%;
    padding: 16px;
    gap: 16px;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #454f5b;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

@media (max-width: 991px) {
    .supplier-terms-notice {
        max-width: 100%;
    }
}

.supplier-terms-link {
    text-decoration: underline;
    color: inherit;
}

/* Form Actions */
.supplier-form-actions {
    display: flex;
    margin-top: 24px;
    width: 100%;
    align-items: center;
    gap: 16px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    line-height: 26px;
    justify-content: end;
}

@media (max-width: 991px) {
    .supplier-form-actions {
        max-width: 100%;
    }
}

.supplier-submit-btn {
    color: #fff;
    align-self: stretch;
    min-width: 64px;
    border-radius: 8px;
    margin: auto 0;
    min-height: 54px;
    width: 125px;
    gap: 8px;
    padding: 0 16px;
    background-color: #00a76f;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

    .supplier-submit-btn:hover {
        background-color: #007867;
    }

/* Responsive adjustments for supplier form */
@media (max-width: 991px) {
    .supplier-person-type-selector {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .supplier-person-type-btn {
        width: 100%;
    }

    .supplier-file-upload-item {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .supplier-file-upload-btn {
        width: 100%;
    }

    .supplier-form-actions {
        justify-content: center;
    }

    .supplier-submit-btn {
        width: 100%;
    }
}

/* ===== SUPPLIER REGISTRATION FORM STYLES END ===== */
/* ===== ORIGINAL DESIGN SUPPLIER FORM STYLES START ===== */

/* Person Type Selector - Original Design */
.original-person-type-selector {
    align-self: start;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 2;
    justify-content: start;
}

.original-person-type-btn {
    align-self: stretch;
    min-width: 64px;
    border-radius: 8px;
    margin: auto 0;
    min-height: 30px;
    gap: 8px;
    padding: 0 8px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    transition: all 0.2s ease;
}

.original-person-type-btn--active {
    color: #fff;
    background-color: #00a76f;
}

.original-person-type-btn--inactive {
    color: #007867;
    background-color: rgba(0, 167, 111, 0.08);
}

.original-person-type-btn:hover {
    opacity: 0.8;
}

/* Field Size Modifiers - Original Design */
.original-field-flex {
    flex: 1;
}

.original-field-small {
    width: 162px;
    flex: none;
}

.original-field-xsmall {
    width: 123px;
    flex: none;
}

.original-field-medium {
    width: 321px;
    min-width: 240px;
    flex: none;
}

.original-field-wide {
    min-width: 240px;
    flex: 1;
}

.original-field-large {
    width: 408px;
    min-width: 240px;
    flex: none;
}

.original-field-xlarge {
    width: 799px;
    min-width: 240px;
    flex: none;
}

@media (max-width: 991px) {
    .original-field-small,
    .original-field-xsmall,
    .original-field-medium,
    .original-field-wide,
    .original-field-large,
    .original-field-xlarge {
        width: 100%;
        max-width: 100%;
        flex: 1;
    }
}

/* File Upload Section - Original Design */
.original-file-upload-section {
    display: flex;
    width: 100%;
    padding: 10px 0;
    flex-direction: column;
    align-items: stretch;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    justify-content: center;
}

@media (max-width: 991px) {
    .original-file-upload-section {
        max-width: 100%;
    }
}

.original-file-upload-item {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    justify-content: start;
    flex-wrap: wrap;
}

    .original-file-upload-item:not(:first-child) {
        margin-top: 16px;
    }

@media (max-width: 991px) {
    .original-file-upload-item {
        max-width: 100%;
    }
}

.original-file-upload-btn {
    min-width: 64px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgba(0, 167, 111, 0.48);
    align-self: stretch;
    display: flex;
    margin: auto 0;
    min-height: 30px;
    gap: 8px;
    font-size: 13px;
    color: #00a76f;
    font-weight: 700;
    line-height: 2;
    padding: 0 8px;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

    .original-file-upload-btn:hover {
        background-color: rgba(0, 167, 111, 0.08);
    }

.original-upload-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 16px;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
}

.original-upload-label {
    color: #00a76f;
    align-self: stretch;
    margin: auto 0;
}

.original-file-status {
    color: #919eab;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    align-self: stretch;
    margin: auto 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* Terms Notice - Original Design */
.original-terms-notice {
    align-self: stretch;
    flex: 1;
    border-radius: 8px;
    background-color: rgba(242, 242, 242, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 24px;
    width: 100%;
    padding: 16px;
    gap: 16px;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #454f5b;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

@media (max-width: 991px) {
    .original-terms-notice {
        max-width: 100%;
    }
}

.original-terms-link {
    text-decoration: underline;
    color: inherit;
}

    .original-terms-link:hover {
        opacity: 0.8;
    }

/* Form Actions - Original Design */
.original-form-actions {
    display: flex;
    margin-top: 24px;
    width: 100%;
    align-items: center;
    gap: 16px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    line-height: 26px;
    justify-content: end;
}

@media (max-width: 991px) {
    .original-form-actions {
        max-width: 100%;
    }
}

.original-submit-btn {
    color: #fff;
    align-self: stretch;
    min-width: 64px;
    border-radius: 8px;
    margin: auto 0;
    min-height: 54px;
    width: 125px;
    gap: 8px;
    padding: 0 16px;
    background-color: #00a76f;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    transition: all 0.2s ease;
}

    .original-submit-btn:hover {
        background-color: #007867;
    }

/* Responsive adjustments for original design */
@media (max-width: 991px) {
    .original-person-type-selector {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .original-person-type-btn {
        width: 100%;
    }

    .original-file-upload-item {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .original-file-upload-btn {
        width: 100%;
    }

    .original-form-actions {
        justify-content: center;
    }

    .original-submit-btn {
        width: 100%;
    }
}

/* ===== ORIGINAL DESIGN SUPPLIER FORM STYLES END ===== */
/* ===== PARLIAMENTARY AMENDMENT FORM STYLES START ===== */

/* Areas of Operation Section */
.amendment-areas-section {
    display: flex;
    width: 100%;
    padding: 10px 0;
    align-items: center;
    gap: 16px;
    justify-content: start;
}

@media (max-width: 991px) {
    .amendment-areas-section {
        max-width: 100%;
    }
}

.amendment-checkbox-group {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    align-items: start;
    gap: 20px;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .amendment-checkbox-group {
        max-width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
}

.amendment-checkbox-item {
    display: flex;
    align-items: center;
    justify-content: start;
    cursor: pointer;
    gap: 8px;
}

.amendment-checkbox-item-wide {
    min-width: 240px;
}

@media (max-width: 991px) {
    .amendment-checkbox-item-wide {
        min-width: auto;
        width: 100%;
    }
}

.amendment-checkbox-icon {
    justify-content: center;
    align-items: center;
    border-radius: 500px;
    align-self: stretch;
    display: flex;
    margin: auto 0;
    width: 40px;
    padding: 8px;
    flex-shrink: 0;
}

    .amendment-checkbox-icon img {
        aspect-ratio: 1;
        object-fit: contain;
        object-position: center;
        width: 24px;
        align-self: stretch;
        margin: auto 0;
        height: 24px;
    }

.amendment-checkbox-label {
    color: #212b36;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    align-self: stretch;
    margin: auto 0;
}

/* President Field Specific Width */
.amendment-president-field {
    width: 482px;
    max-width: 100%;
    flex: none;
}

@media (max-width: 991px) {
    .amendment-president-field {
        width: 100%;
    }
}

/* Responsive adjustments for amendment form */
@media (max-width: 991px) {
    .amendment-checkbox-item {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .amendment-checkbox-icon {
        flex-shrink: 0;
    }

    .amendment-checkbox-label {
        flex: 1;
    }
}

/* ===== PARLIAMENTARY AMENDMENT FORM STYLES END ===== */
/* ===== ANNUAL PROCUREMENT PLAN STYLES START ===== */

/* Filter Field Sizes for Procurement Plan */
.procurement-field-year {
    width: 136px;
    flex: none;
}

.procurement-field-group {
    width: 398px;
    min-width: 240px;
    flex: none;
}

.procurement-field-organ {
    width: 463px;
    min-width: 240px;
    flex: none;
}

@media (max-width: 991px) {
    .procurement-field-year,
    .procurement-field-group,
    .procurement-field-organ {
        width: 100%;
        max-width: 100%;
        flex: 1;
    }
}

/* Label Masks for Procurement Plan */
.procurement-year-mask {
    width: 116px;
}

.procurement-group-mask {
    width: 110px;
}

.procurement-organ-mask {
    width: 39px;
}

/* Analytics Section */
.procurement-analytics-section {
    display: flex;
    margin-top: 10px;
    width: 100%;
    align-items: start;
    gap: 40px;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .procurement-analytics-section {
        max-width: 100%;
    }
}

.procurement-chart-card {
    min-width: 240px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    color: #212B36;
    white-space: nowrap;
    flex-grow: 1;
    width: 275px;
    align-items: stretch;
    border-radius: 16px;
    display: flex;
    max-width: 344px;
    flex-direction: column;
    overflow: hidden;
    justify-content: start;
    gap: 40px;
    background-color: #FFF;
}

@media (max-width: 991px) {
    .procurement-chart-card {
        white-space: initial;
    }
}

.procurement-chart-card-wide {
    border-radius: 16px;
    min-width: 240px;
    overflow: hidden;
    flex-grow: 1;
    width: 557px;
    background-color: #FFF;
    max-width: none;
}

@media (max-width: 991px) {
    .procurement-chart-card-wide {
        max-width: 100%;
    }
}

.procurement-card-header {
    align-items: start;
    display: flex;
    width: 100%;
    gap: 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    justify-content: start;
    padding: 24px 16px 24px 24px;
}

@media (max-width: 991px) {
    .procurement-card-header {
        padding-left: 20px;
        white-space: initial;
    }
}

.procurement-card-header-stack {
    display: flex;
    min-width: 240px;
    width: 100%;
    align-items: center;
    gap: 16px;
    justify-content: start;
    flex: 1;
}

@media (max-width: 991px) {
    .procurement-card-header-stack {
        white-space: initial;
    }
}

.procurement-card-title {
    color: #212B36;
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    width: 100%;
    overflow: hidden;
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
    margin: 0;
}

@media (max-width: 991px) {
    .procurement-card-title {
        white-space: initial;
    }
}

.procurement-card-title-group {
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    width: 100%;
    overflow: hidden;
    flex: 1;
}

@media (max-width: 991px) {
    .procurement-card-title-group {
        max-width: 100%;
        white-space: initial;
    }
}

.procurement-card-subtitle {
    color: #637381;
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    margin: 4px 0 0 0;
}

@media (max-width: 991px) {
    .procurement-card-subtitle {
        max-width: 100%;
    }
}

/* Pie Chart */
.procurement-pie-chart {
    align-self: center;
    display: flex;
    margin-top: 40px;
    width: 240px;
    max-width: 100%;
    padding: 76px 28px 34px;
    flex-direction: column;
    align-items: stretch;
    font-size: 12px;
    color: #FFF;
    font-weight: 400;
}

@media (max-width: 991px) {
    .procurement-pie-chart {
        padding: 40px 20px 34px;
        white-space: initial;
    }
}

.procurement-pie-chart-top {
    display: flex;
    align-items: stretch;
    gap: 20px;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .procurement-pie-chart-top {
        white-space: initial;
    }
}

.procurement-pie-percentage {
    color: #FFF;
}

.procurement-pie-chart-bottom {
    align-self: end;
    display: flex;
    margin-top: 70px;
    align-items: start;
    gap: 35px;
}

@media (max-width: 991px) {
    .procurement-pie-chart-bottom {
        margin-right: 10px;
        margin-top: 40px;
        white-space: initial;
    }
}

/* Donut Chart */
.procurement-donut-chart {
    align-self: center;
    display: flex;
    margin-top: 40px;
    width: 240px;
    max-width: 100%;
    padding: 85px 28px;
    flex-direction: column;
    align-items: stretch;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .procurement-donut-chart {
        padding: 85px 20px;
        white-space: initial;
    }
}

.procurement-donut-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

@media (max-width: 991px) {
    .procurement-donut-center {
        white-space: initial;
    }
}

.procurement-donut-label {
    color: #637381;
    font-size: 14px;
    font-weight: 600;
    line-height: 2;
}

.procurement-donut-value {
    color: #212B36;
    font-size: 32px;
    font-weight: 700;
}

/* Bar Chart */
.procurement-bar-chart {
    position: relative;
    width: 100%;
    padding: 24px;
}

@media (max-width: 991px) {
    .procurement-bar-chart {
        max-width: 100%;
        padding: 24px 20px;
    }
}

.procurement-chart-grid {
    z-index: 0;
    display: flex;
    width: 100%;
    align-items: start;
    gap: 20px;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .procurement-chart-grid {
        max-width: 100%;
    }
}

.procurement-y-axis {
    display: flex;
    min-height: 258px;
    flex-direction: column;
    align-items: end;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 12px;
    color: #919EAB;
    font-weight: 400;
    text-align: right;
    justify-content: start;
}

.procurement-y-axis-item {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: start;
}

    .procurement-y-axis-item:not(:first-child) {
        margin-top: 37px;
    }

.procurement-y-label {
    color: #919EAB;
}

.procurement-y-spacer {
    display: flex;
    min-height: 1px;
    width: 24px;
}

.procurement-chart-content {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    flex: 1;
}

@media (max-width: 991px) {
    .procurement-chart-content {
        max-width: 100%;
    }
}

.procurement-grid-lines {
    width: 100%;
}

@media (max-width: 991px) {
    .procurement-grid-lines {
        max-width: 100%;
    }
}

.procurement-grid-line {
    display: flex;
    min-height: 18px;
    width: 100%;
}

    .procurement-grid-line:not(:first-child) {
        margin-top: 42px;
        padding: 9px 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }

@media (max-width: 991px) {
    .procurement-grid-line:not(:first-child) {
        max-width: 100%;
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .procurement-grid-line {
        max-width: 100%;
    }
}

.procurement-grid-line-img {
    aspect-ratio: 500;
    object-fit: contain;
    object-position: center;
    width: 100%;
    stroke-width: 1px;
    stroke: rgba(145, 158, 171, 0.20);
}

@media (max-width: 991px) {
    .procurement-grid-line-img {
        max-width: 100%;
    }
}

.procurement-x-axis {
    display: flex;
    margin-top: 12px;
    width: 100%;
    align-items: center;
    gap: 97px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 12px;
    color: #919EAB;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .procurement-x-axis {
        max-width: 100%;
        white-space: initial;
        gap: 40px;
    }
}

.procurement-x-label {
    color: #919EAB;
    align-self: stretch;
    margin: auto 0;
}

.procurement-bar-chart-bars {
    transform: rotate(1.2246468525851679e-16rad);
    position: absolute;
    z-index: 0;
    width: 434px;
    max-width: 100%;
    left: 121px;
    right: 71px;
    top: 30px;
}

.procurement-bar-item {
    border-radius: 0;
    background-color: rgba(0, 167, 111, 1);
    align-self: stretch;
    display: flex;
    min-height: 8px;
    width: 100%;
    fill: #00A76F;
}

    .procurement-bar-item:not(:first-child) {
        margin-top: 48px;
    }

@media (max-width: 991px) {
    .procurement-bar-item:not(:first-child) {
        margin-top: 40px;
    }
}

.procurement-bar-medium {
    width: 243px;
    max-width: 100%;
}

.procurement-bar-medium-alt {
    width: 239px;
    max-width: 100%;
}

.procurement-bar-image {
    aspect-ratio: 40;
    object-fit: contain;
    object-position: center;
    width: 321px;
    fill: #00A76F;
    margin-top: 48px;
    max-width: 100%;
}

@media (max-width: 991px) {
    .procurement-bar-image {
        margin-top: 40px;
    }
}

/* Chart Legend */
.procurement-chart-legend {
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    border-top: 1px dashed rgba(145, 158, 171, 0.20);
    display: flex;
    margin-top: 40px;
    width: 100%;
    gap: 16px;
    font-size: 13px;
    font-weight: 500;
    line-height: 2;
    padding: 24px 0;
}

@media (max-width: 991px) {
    .procurement-chart-legend {
        white-space: initial;
    }
}

.procurement-chart-footer {
    justify-content: center;
    align-items: center;
    border-top: 1px dashed rgba(145, 158, 171, 0.20);
    display: flex;
    margin-top: 40px;
    width: 100%;
    gap: 16px;
    font-size: 13px;
    color: #212B36;
    font-weight: 500;
    white-space: nowrap;
    line-height: 2;
    padding: 24px 0;
}

@media (max-width: 991px) {
    .procurement-chart-footer {
        white-space: initial;
    }
}

.procurement-legend-item {
    align-self: stretch;
    display: flex;
    margin: auto 0;
    align-items: center;
    gap: 8px;
    justify-content: start;
}

@media (max-width: 991px) {
    .procurement-legend-item {
        white-space: initial;
    }
}

.procurement-legend-color {
    border-radius: 7px;
    align-self: stretch;
    display: flex;
    margin: auto 0;
    width: 12px;
    flex-shrink: 0;
    height: 12px;
}

.procurement-legend-color-sead {
    background-color: #00A76F;
}

.procurement-legend-color-sec {
    background-color: #FFAB00;
}

.procurement-legend-color-see {
    background-color: #00B8D9;
}

.procurement-legend-color-others {
    background-color: #FF5630;
}

.procurement-legend-color-semad {
    background-color: #FF5630;
}

.procurement-legend-color-ses {
    background-color: #FFAB00;
}

.procurement-legend-color-outros {
    background-color: #00B8D9;
}

.procurement-legend-text {
    color: #212B36;
    align-self: stretch;
    margin: auto 0;
}

/* Export Section */
.procurement-export-section {
    display: flex;
    margin-top: 10px;
    width: 100%;
    padding: 10px 0;
    align-items: center;
    gap: 16px;
    font-family: 'Inter', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 16px;
    color: #007867;
    font-weight: 400;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .procurement-export-section {
        max-width: 100%;
    }
}

.procurement-export-btn {
    color: #007867;
    align-self: stretch;
    min-width: 64px;
    border-radius: 8px;
    margin: auto 0;
    min-height: 36px;
    gap: 8px;
    width: 161px;
    padding: 0 8px;
    background-color: rgba(0, 167, 111, 0.08);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

    .procurement-export-btn:hover {
        background-color: rgba(0, 167, 111, 0.12);
    }

@media (max-width: 991px) {
    .procurement-export-btn {
        white-space: initial;
    }
}

/* Table Cell Sizes for Procurement Plan */
.procurement-cell-narrow {
    width: 48px;
}

.procurement-cell-medium {
    width: 203px;
}

.procurement-cell-wide {
    min-width: 240px;
    width: 355px;
}

.procurement-cell-date {
    width: 131px;
}

.procurement-cell-quantity {
    width: 122px;
}

.procurement-cell-value {
    width: 171px;
}

.procurement-sort-filter {
    align-self: stretch;
    display: flex;
    margin: auto 0;
    width: 16px;
    flex-shrink: 0;
    height: 16px;
}

.procurement-table-spacer {
    display: flex;
    min-height: 54px;
    width: 100%;
}

@media (max-width: 991px) {
    .procurement-table-spacer {
        max-width: 100%;
    }
}

/* Responsive adjustments for procurement table cells */
@media (max-width: 991px) {
    .procurement-cell-narrow,
    .procurement-cell-medium,
    .procurement-cell-wide,
    .procurement-cell-date,
    .procurement-cell-quantity,
    .procurement-cell-value {
        width: auto;
        min-width: auto;
        flex: 1;
    }
}

/* ===== ANNUAL PROCUREMENT PLAN STYLES END ===== */
/* ===== LEGISLATION PAGE STYLES START ===== */

/* Main legislation page container */
.legislation-page {
    min-height: calc(100vh - 200px);
    background-color: #ffffff;
}

/* Filter section */
.legislation-filter-section {
    display: flex;
    margin-top: 10px;
    width: 100%;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    color: #212b36;
    font-weight: 700;
    text-align: center;
    line-height: 24px;
    justify-content: flex-start;
}

@media (max-width: 991px) {
    .legislation-filter-section {
        max-width: 100%;
    }
}

.legislation-filter-buttons {
    display: flex;
    min-width: 240px;
    width: 100%;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex: 1;
}

@media (max-width: 991px) {
    .legislation-filter-buttons {
        max-width: 100%;
    }
}

.legislation-filter-btn {
    min-width: 64px;
    border-radius: 8px;
    min-height: 36px;
    gap: 8px;
    padding: 0 12px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: inherit;
    background-color: rgba(145, 158, 171, 0.08);
    color: #212b36;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.legislation-filter-btn--active {
    color: #007867;
    background-color: rgba(0, 167, 111, 0.08);
}

.legislation-filter-btn:hover {
    opacity: 0.8;
}

@media (max-width: 991px) {
    .legislation-filter-btn {
        white-space: initial;
    }
}

/* Legislation grid */
.legislation-grid {
    margin-top: 10px;
    width: 100%;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    color: rgba(38, 50, 56, 1);
}

@media (max-width: 991px) {
    .legislation-grid {
        max-width: 100%;
    }
}

.legislation-grid-row {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

    .legislation-grid-row:first-child {
        margin-bottom: 8px;
    }

@media (max-width: 991px) {
    .legislation-grid-row {
        max-width: 100%;
    }
}

.legislation-card {
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 240px;
    padding: 24px;
    flex: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .legislation-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

@media (max-width: 991px) {
    .legislation-card {
        max-width: 100%;
        padding: 20px;
    }
}

.legislation-card-title {
    width: 100%;
    font-weight: 600;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

.legislation-card-description {
    margin-top: 16px;
    width: 100%;
    font-weight: 400;
    line-height: 22px;
}

.legislation-card-action-btn {
    min-width: 64px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    display: flex;
    margin-top: 16px;
    min-height: 30px;
    width: 100%;
    gap: 8px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 13px;
    color: #007867;
    font-weight: 700;
    line-height: 2;
    padding: 0 8px;
    background-color: rgba(0, 167, 111, 0.08);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .legislation-card-action-btn:hover {
        opacity: 0.8;
    }

.legislation-btn-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.legislation-btn-label {
    color: #007867;
}

/* Pagination */
.legislation-pagination-nav {
    display: flex;
    margin-top: 10px;
    min-height: 58px;
    width: 100%;
    padding: 11px 8px 11px 16px;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    justify-content: center;
}

@media (max-width: 991px) {
    .legislation-pagination-nav {
        max-width: 100%;
    }
}

.legislation-pagination-controls {
    display: flex;
    min-width: 240px;
    align-items: flex-start;
    gap: 4px;
    justify-content: flex-start;
}

.legislation-pagination-btn {
    border-radius: 8px;
    min-height: 36px;
    gap: 8px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    line-height: 24px;
    width: 36px;
    height: 36px;
    background-color: rgba(145, 158, 171, 0.08);
    color: #212b36;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

.legislation-pagination-btn--active {
    color: #007867;
    background-color: rgba(0, 167, 111, 0.08);
}

.legislation-pagination-btn--icon {
    justify-content: center;
    align-items: center;
}

.legislation-pagination-btn:hover {
    opacity: 0.8;
}

.legislation-pagination-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 20px;
    height: 20px;
}

@media (max-width: 991px) {
    .legislation-pagination-btn {
        white-space: initial;
    }
}

/* ===== LEGISLATION PAGE STYLES END ===== */
/* ===== SEARCH PAGE STYLES START ===== */

/* Search page container */
.search-page {
    min-height: calc(100vh - 200px);
    background-color: #ffffff;
}

/* Search form in header */
.search-form-container {
    margin-top: 16px;
    width: 100%;
}

.search-input-group {
    display: flex;
    width: 100%;
    padding: 10px 0;
    align-items: center;
    gap: 8px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .search-input-group {
        max-width: 100%;
    }
}

.search-input-wrapper {
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    font-size: 14px;
    color: #637381;
    font-weight: 400;
    line-height: 2;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 32px;
    border-radius: 8px;
    border: 1px solid var(--text-disabled, #919eab);
    position: relative;
    display: flex;
    min-height: 54px;
    justify-content: start;
    height: 54px;
    padding: 0 14px;
}

@media (max-width: 991px) {
    .search-input-wrapper {
        max-width: 100%;
    }
}

.search-input {
    color: #637381;
    text-overflow: ellipsis;
    z-index: 0;
    margin: auto 0;
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
}

    .search-input::placeholder {
        color: #637381;
    }

.search-submit-btn {
    color: #fff;
    align-self: stretch;
    min-width: 64px;
    border-radius: 8px;
    margin: auto 0;
    min-height: 54px;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 26px;
    width: 125px;
    padding: 0 16px;
    background-color: #00a76f;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

    .search-submit-btn:hover {
        background-color: #007854;
    }

@media (max-width: 991px) {
    .search-submit-btn {
        white-space: initial;
    }
}

/* Search filters section */
.search-filters-section {
    display: flex;
    margin-top: 16px;
    width: 100%;
    align-items: start;
    gap: 8px;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .search-filters-section {
        max-width: 100%;
    }
}

.content-type-filters {
    display: flex;
    min-width: 240px;
    align-items: center;
    gap: 8px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    color: #212b36;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    line-height: 24px;
    justify-content: start;
    flex-wrap: wrap;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

@media (max-width: 991px) {
    .content-type-filters {
        max-width: 100%;
        white-space: initial;
    }
}

.search-filter-btn {
    align-self: stretch;
    min-width: 64px;
    border-radius: 8px;
    margin: auto 0;
    min-height: 36px;
    gap: 8px;
    padding: 0 12px;
    background-color: rgba(145, 158, 171, 0.08);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

    .search-filter-btn:hover {
        background-color: rgba(145, 158, 171, 0.16);
    }

.search-filter-active {
    color: #007867;
    background-color: rgba(0, 167, 111, 0.08);
}

    .search-filter-active:hover {
        background-color: rgba(0, 167, 111, 0.16);
    }

@media (max-width: 991px) {
    .search-filter-btn {
        white-space: initial;
    }
}

/* View toggle controls */
.view-toggle-controls {
    display: flex;
    gap: 8px;
}

.view-toggle-btn {
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    display: flex;
    min-height: 36px;
    gap: 8px;
    width: 36px;
    height: 36px;
    background-color: rgba(145, 158, 171, 0.08);
    border: none;
    cursor: pointer;
}

    .view-toggle-btn:hover {
        background-color: rgba(145, 158, 171, 0.16);
    }

.view-toggle-active {
    background-color: rgba(0, 167, 111, 0.08);
}

    .view-toggle-active:hover {
        background-color: rgba(0, 167, 111, 0.16);
    }

.view-toggle-icon {
    object-fit: contain;
    object-position: center;
    align-self: stretch;
    margin: auto 0;
}

.view-toggle-btn:first-child .view-toggle-icon {
    aspect-ratio: 0.87;
    width: 14px;
}

.view-toggle-btn:last-child .view-toggle-icon {
    aspect-ratio: 1;
    width: 16px;
}

/* Search results section */
.search-results-section {
    margin-top: 16px;
    width: 100%;
}

@media (max-width: 991px) {
    .search-results-section {
        max-width: 100%;
    }
}

.results-grid {
    width: 100%;
}

.results-row {
    display: flex;
    width: 100%;
    align-items: start;
    gap: 8px;
    justify-content: start;
    flex-wrap: wrap;
}

    .results-row:not(:first-child) {
        margin-top: 8px;
    }

@media (max-width: 991px) {
    .results-row {
        max-width: 100%;
    }
}

/* Result cards */
.result-card {
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 240px;
    padding: 24px;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

@media (max-width: 991px) {
    .result-card {
        max-width: 100%;
        padding: 20px;
    }
}

.result-card-header {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 40px 100px;
    font-size: 12px;
    white-space: nowrap;
    text-align: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .result-card-header {
        max-width: 100%;
        white-space: initial;
    }
}

.result-date {
    color: rgba(38, 50, 56, 1);
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-weight: 400;
    line-height: 1;
    align-self: stretch;
    margin: auto 0;
}

.result-label {
    align-self: stretch;
    min-width: 24px;
    border-radius: 6px;
    margin: auto 0;
    min-height: 24px;
    gap: 6px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 2;
    height: 24px;
    padding: 0 6px;
}

.result-label-updates {
    color: #b76e00;
    background-color: #fff1d6;
}

.result-label-events {
    color: #118d57;
    background-color: rgba(34, 197, 94, 0.16);
}

.result-label-training {
    color: #006c9c;
    background-color: rgba(0, 184, 217, 0.16);
}

@media (max-width: 991px) {
    .result-label {
        white-space: initial;
    }
}

.result-card-content {
    margin-top: 8px;
    width: 100%;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    color: rgba(38, 50, 56, 1);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .result-card-content {
        max-width: 100%;
    }
}

.result-title {
    font-weight: 600;
    margin: 0 0 8px 0;
    font-size: inherit;
}

@media (max-width: 991px) {
    .result-title {
        max-width: 100%;
    }
}

.result-description {
    font-weight: 400;
    line-height: 22px;
    margin: 0 0 8px 0;
}

@media (max-width: 991px) {
    .result-description {
        max-width: 100%;
    }
}

.result-read-more {
    color: rgba(0, 120, 103, 1);
    font-weight: 500;
    text-decoration: none;
}

    .result-read-more:hover {
        text-decoration: underline;
    }

@media (max-width: 991px) {
    .result-read-more {
        max-width: 100%;
    }
}

/* Search pagination */
.search-pagination-nav {
    display: flex;
    margin-top: 24px;
    min-height: 58px;
    width: 100%;
    padding: 11px 8px 11px 16px;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    justify-content: center;
}

@media (max-width: 991px) {
    .search-pagination-nav {
        max-width: 100%;
    }
}

.search-pagination-controls {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    align-items: start;
    gap: 4px;
    justify-content: start;
}

.search-pagination-btn {
    border-radius: 8px;
    min-height: 36px;
    gap: 8px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    line-height: 24px;
    width: 36px;
    height: 36px;
    background-color: rgba(145, 158, 171, 0.08);
    border: none;
    cursor: pointer;
    color: #212b36;
}

    .search-pagination-btn:hover {
        background-color: rgba(145, 158, 171, 0.16);
    }

.search-pagination-active {
    color: #007867;
    background-color: rgba(0, 167, 111, 0.08);
}

    .search-pagination-active:hover {
        background-color: rgba(0, 167, 111, 0.16);
    }

.search-pagination-arrow {
    justify-content: center;
    align-items: center;
    display: flex;
}

@media (max-width: 991px) {
    .search-pagination-btn {
        white-space: initial;
    }
}

.search-pagination-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 20px;
    align-self: stretch;
    margin: auto 0;
    height: 20px;
}

/* ===== SEARCH PAGE STYLES END ===== */
/* ===== MANUAIS PARA FORNECEDORES START ===== */
.page-container {
    padding: 24px 144px;
}

@media (max-width: 991px) {
    .page-container {
        padding: 24px 20px;
    }
}

.breadcrumb-nav {
    display: flex;
    width: 100%;
    padding: 10px 0;
    align-items: center;
    gap: 8px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    color: #212b36;
    font-weight: 400;
    line-height: 2;
    justify-content: start;
}

@media (max-width: 991px) {
    .breadcrumb-nav {
        max-width: 100%;
    }
}

.breadcrumb-stack {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    flex: 1;
}

@media (max-width: 991px) {
    .breadcrumb-stack {
        max-width: 100%;
    }
}

.breadcrumb-links {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 16px;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .breadcrumb-links {
        max-width: 100%;
    }
}

.breadcrumb-link {
    color: #212b36;
    align-self: stretch;
    margin: auto 0;
    gap: 4px;
}

.breadcrumb-link-active {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    color: #919eab;
    text-overflow: ellipsis;
    align-self: stretch;
    flex: 1;
    min-width: 240px;
    margin: auto 0;
    gap: 4px;
}

@media (max-width: 991px) {
    .breadcrumb-link-active {
        max-width: 100%;
    }
}

.main-content {
    /*margin-top: 10px;*/
}

.welcome-section {
    border-radius: 8px;
    background-color: rgba(246, 255, 252, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    width: 100%;
    padding: 16px 64px 16px 16px;
    align-items: center;
    gap: 100px;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    color: rgba(13, 61, 47, 1);
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .welcome-section {
        max-width: 100%;
        padding-right: 20px;
        gap: 40px;
    }
}

.welcome-content {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    align-items: center;
    justify-content: start;
    width: 1105px;
}

@media (max-width: 991px) {
    .welcome-content {
        max-width: 100%;
    }
}

.welcome-text {
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    width: 100%;
    flex: 1;
}

@media (max-width: 991px) {
    .welcome-text {
        max-width: 100%;
    }
}

.welcome-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .welcome-title {
        max-width: 100%;
    }
}

.welcome-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin: 8px 0 0 0;
}

@media (max-width: 991px) {
    .welcome-description {
        max-width: 100%;
    }
}

.welcome-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 72px;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
}

.process-section,
.legal-section {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    width: 100%;
    padding: 16px 64px 16px 16px;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    color: #212b36;
}

@media (max-width: 991px) {
    .process-section,
    .legal-section {
        max-width: 100%;
        padding-right: 20px;
    }
}

.section-header {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 100px;
    font-weight: 600;
    line-height: 1.6;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .section-header {
        max-width: 100%;
        gap: 40px;
    }
}

.section-title {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #212b36;
    font-feature-settings: "liga" off, "clig" off;
    text-overflow: ellipsis;
    align-self: stretch;
    margin: auto 0;
    font-size: 14px;
    font-weight: 600;
}

.expand-icon {
    aspect-ratio: 0.87;
    object-fit: contain;
    object-position: center;
    width: 14px;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
}

.process-content,
.legal-content {
    margin-top: 16px;
    width: 100%;
    padding: 0 24px;
}

@media (max-width: 991px) {
    .process-content,
    .legal-content {
        max-width: 100%;
        padding: 0 20px;
    }
}

.process-description {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    color: #212b36;
    font-feature-settings: "liga" off, "clig" off;
    text-overflow: ellipsis;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
}

.legal-links {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    color: #212b36;
    font-feature-settings: "liga" off, "clig" off;
    text-overflow: ellipsis;
    text-decoration-skip-ink: none;
    font-weight: 400;
    line-height: 22px;
}

.legal-link {
    color: #212b36;
    text-decoration: underline;
}

    .legal-link:hover {
        color: #007867;
    }

.videos-section {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    margin-top: 10px;
    width: 100%;
    padding: 16px 64px 16px 16px;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
}

@media (max-width: 991px) {
    .videos-section {
        max-width: 100%;
        padding-right: 20px;
    }
}

.videos-content {
    margin-top: 16px;
}

.useful-links {
    color: #007867;
    font-feature-settings: "liga" off, "clig" off;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
}

.links-label {
    font-weight: 400;
    color: rgba(33, 43, 54, 1);
}

.links-list {
    margin: 0;
    padding-left: 20px;
}

.videos-intro,
.parliamentary-intro,
.dismember-intro {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    color: #212b36;
    font-feature-settings: "liga" off, "clig" off;
    text-overflow: ellipsis;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin: 16px 0 0 0;
}

@media (max-width: 991px) {
    .videos-intro,
    .parliamentary-intro,
    .dismember-intro {
        max-width: 100%;
    }
}

.video-thumbnails {
    align-self: start;
    display: flex;
    margin-top: 16px;
    align-items: start;
    gap: 16px;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .video-thumbnails {
        max-width: 100%;
    }
}

.video-thumbnail {
    min-width: 240px;
}

    .video-thumbnail:first-child {
        aspect-ratio: 1.79;
        object-fit: contain;
        object-position: center;
        width: 588px;
    }

    .video-thumbnail:last-child {
        aspect-ratio: 1.68;
        object-fit: contain;
        object-position: center;
        width: 552px;
    }

@media (max-width: 991px) {
    .video-thumbnail {
        max-width: 100%;
    }
}

.parliamentary-video,
.dismember-video {
    aspect-ratio: 1.79;
    object-fit: contain;
    object-position: center;
    width: 588px;
    margin-top: 16px;
    max-width: 100%;
}

.dismember-video {
    aspect-ratio: 1.81;
}

.contact-section {
    border-radius: 8px;
    background-color: rgba(246, 255, 252, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    margin-top: 10px;
    width: 100%;
    padding: 16px 64px 16px 16px;
    align-items: center;
    gap: 16px;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .contact-section {
        max-width: 100%;
        padding-right: 20px;
    }
}

.contact-question {
    color: rgba(13, 61, 47, 1);
    font-weight: 400;
    align-self: stretch;
    margin: auto 0;
}

.contact-info {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #007867;
    font-feature-settings: "liga" off, "clig" off;
    text-overflow: ellipsis;
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    gap: 8px;
    font-weight: 700;
}

/* ===== MANUAIS PARA FORNECEDORES END ===== */
/* ===== DOCUMENT TEMPLATES STYLES START ===== */

/* Filter Section */
.document-filter-section {
    display: flex;
    margin-top: 10px;
    width: 100%;
    align-items: start;
    gap: 8px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    color: #212b36;
    font-weight: 700;
    text-align: center;
    line-height: 24px;
    justify-content: start;
}

@media (max-width: 991px) {
    .document-filter-section {
        max-width: 100%;
    }
}

.document-filter-buttons {
    display: flex;
    min-width: 240px;
    width: 100%;
    align-items: center;
    gap: 8px;
    justify-content: start;
    flex-wrap: wrap;
    flex: 1;
}

@media (max-width: 991px) {
    .document-filter-buttons {
        max-width: 100%;
    }
}

.document-filter-btn {
    align-self: stretch;
    min-width: 64px;
    border-radius: 8px;
    margin: auto 0;
    min-height: 36px;
    gap: 8px;
    padding: 0 12px;
    border: none;
    cursor: pointer;
    background-color: rgba(145, 158, 171, 0.08);
    color: #212b36;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    white-space: nowrap;
}

.document-filter-btn--active {
    color: #007867;
    background-color: rgba(0, 167, 111, 0.08);
}

.document-filter-btn:hover {
    opacity: 0.8;
}

@media (max-width: 991px) {
    .document-filter-btn {
        white-space: initial;
    }
}

/* Documents Grid */
.documents-grid-section {
    margin-top: 10px;
    width: 100%;
}

@media (max-width: 991px) {
    .documents-grid-section {
        max-width: 100%;
    }
}

.documents-grid-row {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
    justify-content: start;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

    .documents-grid-row:last-child {
        margin-bottom: 0;
    }

@media (max-width: 991px) {
    .documents-grid-row {
        max-width: 100%;
    }
}

/* Document Cards */
.document-template-card {
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
    padding: 24px;
    flex: 1;
}

@media (max-width: 991px) {
    .document-template-card {
        max-width: 100%;
        padding: 20px;
    }
}

.document-card-header {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 100px;
    justify-content: space-between;
}

.document-card-header--spaced {
    gap: 8px;
    justify-content: start;
}

.document-card-title {
    color: rgba(38, 50, 56, 1);
    font-size: 14px;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-weight: 600;
    line-height: 1.6;
    align-self: stretch;
    margin: auto 0;
    flex: 1;
}

.document-card-header--spaced .document-card-title {
    flex: 1;
}

.document-person-label {
    align-self: stretch;
    min-width: 24px;
    border-radius: 6px;
    margin: auto 0;
    min-height: 24px;
    gap: 6px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 2;
    height: 24px;
    padding: 0 6px;
}

.document-person-label--juridica {
    color: #b76e00;
    background-color: rgba(255, 171, 0, 0.16);
}

.document-person-label--fisica {
    color: #5119b7;
    background-color: rgba(142, 51, 255, 0.16);
}

.document-card-description {
    margin: 16px 0 0 0;
    width: 100%;
    font-family: 'Instrument Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    color: rgba(38, 50, 56, 1);
    font-weight: 400;
    line-height: 22px;
}

/* Download Button */
.document-download-btn {
    min-width: 64px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    display: flex;
    margin-top: 16px;
    min-height: 30px;
    width: 100%;
    gap: 8px;
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 13px;
    color: #007867;
    font-weight: 700;
    line-height: 2;
    padding: 0 8px;
    background-color: rgba(0, 167, 111, 0.08);
    border: none;
    cursor: pointer;
}

    .document-download-btn:hover {
        opacity: 0.8;
    }

.document-download-icon {
    aspect-ratio: 0.75;
    object-fit: contain;
    object-position: center;
    width: 12px;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
}

.document-download-label {
    color: #007867;
    align-self: stretch;
    margin: auto 0;
}

/* ===== DOCUMENT TEMPLATES STYLES END ===== */

.form-control {    
    font-weight: unset;
    border-radius: 8px !important;
    height: 50px !important;
    border: 1px solid var(--text-disabled, #919eab) !important;
}

.select2-container .select2-selection--multiple {
    min-height: 50px !important;
    display: flex;
    align-items: center;
    border: 1px solid var(--text-disabled, #919eab) !important;
    border-radius: 8px !important;
    padding: .85rem 1.5rem;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
    vertical-align: middle;
}

label {
    color: #637381;
    font-size: 12px;
}

select {
    /*background: url('../images/seta-dropdown.svg');*/
    background-repeat: no-repeat;
    background-position: right;
}

input[type=checkbox] {
    margin: 0;
}

/* Esconde o checkbox original */
.checkbox-custom {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px; /* bordas arredondadas */
    margin-right: 6px;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

    /* Estilo quando est marcado */
    .checkbox-custom:checked {
        background-color: #00A76D;
        border-color: #009688;
    }

        /* Adiciona o cone de check */
        .checkbox-custom:checked::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 6px;
            width: 4px;
            height: 9px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

    /* Texto ao lado */
    .checkbox-custom + span {
        color: #333;
        vertical-align: middle;
    }

.div-icone-voltar {
    position: absolute;
    top: 5%;
    left: 5%;
    cursor: pointer;
}

.icone-voltar {
    color: #F8FAFC;
    font-size: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .icone-voltar:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(-5px) !important;
    }

.login-button {
    background-color: #00A76F;
    border-color: #00A76F;
    transition: all 0.3s ease;
}

    .login-button:hover {
        background-color: #00A76F;
        border-color: #00A76F;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(-5px);
    }

.login-inscricao-id-goias {
    color: #00A76F;
    transition: all 0.3s ease;
}

    .login-inscricao-id-goias:hover {
        color: #00A76F;
        opacity: 0.7;
    }

@media (max-width: 767px) {
    .icone-voltar {
        display: none !important;
    }
}

@media (max-width: 429px) {
    .login-container {
        padding: 30px;
    }
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    -webkit-text-fill-color: #344056 !important;
}

    input:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0 30px #fff inset !important;
        -webkit-text-fill-color: #344056 !important;
    }

.btn-recuperar-senha {
    color: #00A76F;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-recuperar-senha:hover {
        opacity: 0.7;
    }

.pw-btn-toggle {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #344056;
    cursor: pointer;
    padding: .85rem 1.5rem;
    height: 50px;
    display: flex;
    align-items: center;
}