.contentFull {
    width: 100%;
    margin: 0px;
    padding: 0px;

}

.header {
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    color: white;
    align-items: center;
    color: #337ab7;
    font-weight: bold;
    border-bottom: 1px dashed rgb(123, 145, 170);
    margin-bottom: 30px;
    background: #3077b6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.08);
}

.contentHeader {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width:700px){
    .header{
        height: auto !important;
        min-height: unset !important;
        padding: 10px 12px;
        box-sizing: border-box;
    }

    .contentHeader{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .contentHeader .indicators,
    .contentHeader .indicator{
        display: none !important;
    }

    .logoTitle{
        width: 100%;
        justify-content: center;
    }

    .logoTitle p{
        text-align: center;
        margin: 0;
        justify-content: center;
    }

    .login{
        width: 100%;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
    }
}

@media (max-width: 768px){
    #documentModels-table,
    #documentModels-table thead,
    #documentModels-table tbody,
    #documentModels-table th,
    #documentModels-table td,
    #documentModels-table tr{
        display: block;
        width: 100%;
    }

    #documentModels-table thead{
        display: none;
    }

    #documentModels-table tr{
        margin-bottom: 12px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background: #fff;
        box-sizing: border-box;
    }

    #documentModels-table td{
        border: none;
        padding: 6px 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    #documentModels-table td:nth-of-type(1)::before{
        content: "Data";
        font-weight: 600;
        display: block;
        margin-bottom: 2px;
    }

    #documentModels-table td:nth-of-type(2)::before{
        content: "Descrição";
        font-weight: 600;
        display: block;
        margin-bottom: 2px;
    }

    #documentModels-table td:nth-of-type(3)::before{
        content: "Situação";
        font-weight: 600;
        display: block;
        margin-bottom: 2px;
    }

    #documentModels-table td:nth-of-type(4)::before{
        content: "Assinado";
        font-weight: 600;
        display: block;
        margin-bottom: 2px;
    }

    #documentModels-table td:nth-of-type(5)::before{
        content: "Detalhes";
        font-weight: 600;
        display: block;
        margin-bottom: 2px;
    }

    #documentModels-table td,
    #documentModels-table td *{
        max-width: 100%;
        box-sizing: border-box;
    }

    .descriptionTableDocment,
    .descriptionDocment,
    .descriptionDocment p{
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
        white-space: normal;
    }

    .descriptionDocment p{
        text-align: left;
        line-height: 1.45;
        hyphens: auto;
    }

    .buttonDiv,
    .buttonViewDoc{
        width: 100%;
    }

    .buttonViewDoc{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        box-sizing: border-box;
    }

    #documentModels-table .btn{
        width: 100%;
    }

    .ReadAproved{
        width: 100%;
    }
}

.logoTitle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.logoTitle p {
    width: 200px;
    color: white;
    font-weight: 500;
}

.indicators {
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: white;
    justify-content: center;
    align-items: center;
}

.indicators .indicator {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.indicators .indicator .title {
    font-weight: bold;
}


.login {
    padding: 0.7%;
    height: 1%;
    background: #f8f9fa;
    color: black;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(51, 122, 183, 0.2);
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.login:hover::before {
    left: 100%;
    color: black;
}

.login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(51, 122, 183, 0.3);
    color: black !important;
}

.logobox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    margin-bottom: 30px;
    background: white;
    padding: auto;
    border-radius: 8px;
}

.logobox img {
    max-height: 100px;
}

.logobox .title {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: #375068;
    margin-top: 15px;
}

.buttonBack {
    margin-bottom: 30px;
}

.ButtonGoBack {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #337ab7, #2a6eb5);
    padding: 12px 28px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(51, 122, 183, 0.2);
    position: relative;
    overflow: hidden;
}

.ButtonGoBack::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    color: white;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.ButtonGoBack:hover::before {
    left: 100%;
}

.ButtonGoBack:hover {
    background: linear-gradient(135deg, #2a6eb5, #1e5fa2);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(51, 122, 183, 0.3);
    color: white !important;
}

.ButtonGoBack:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(51, 122, 183, 0.2);
    color: white !important;
}

.documents-section {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: #375068;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #3ebc9b;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.document-item {
    background: #f9fafb;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    margin-bottom: 0;
}

.document-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.document-link {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: inherit;
}

.document-icon {
    width: 45px;
    height: 45px;
    background: #3ebc9b;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.document-icon i {
    font-size: 22px;
    color: white;
}

.document-info {
    flex: 1;
}

.document-title {
    font-size: 14px;
    font-weight: 600;
    color: #375068;
    margin-bottom: 4px;
}

.document-date {
    font-size: 13px;
    color: #6b7280;
}

.info-container {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ProtocolInfo {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 6px;
    margin-bottom: 16px;
    border-left: 3px solid #3ebc9b;
}

.ProtocolInfo>div {
    font-size: 14px;
    color: #374151;
}

.ProtocolInfo b {
    color: #375068;
}

.info-row {
    margin-bottom: 16px;
}

.info-row>div:first-child {
    font-size: 16px;
    font-weight: 700;
    color: #375068;
    margin-bottom: 10px;
}

.ementa-text {
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 6px;
    border-left: 3px solid #3ebc9b;
    margin-bottom: 16px;
    margin-top: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ementa-label {
    font-size: 14px;
    font-weight: 600;
    color: #3ebc9b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(36, 42, 52, 0.15);
}

.ementa-content {
    line-height: 1.6;
    color: #24313a;
    font-size: 14px;
}

.SessionNull {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    border-left: 4px solid #3ebc9b;
    margin-bottom: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #64748b;
    font-size: 14px;
    font-style: italic;
    text-align: center;
}

.Observation {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    border-left: 4px solid #3ebc9b;
    margin-bottom: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.Observation-label {
    font-size: 15px;
    font-weight: 600;
    color: #3ebc9b;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(36, 42, 52, 0.15);
}

.Observation-content {
    line-height: 1.6;
    color: #24313a;
    font-size: 14px;
}

.emenda-section {
    background: #fef3c7;
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
    margin-top: 15px;
    margin-bottom: 20px;
}

.emenda-title {
    font-size: 16px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 12px;
}

.emenda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.emenda-item {
    background: white;
    padding: 10px;
    border-radius: 4px;
}

.emenda-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 4px;
}

.emenda-value {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.emenda-value-highlight {
    color: #059669;
    font-size: 15px;
}

.sessions-section {
    background: #f0f9ff;
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid #3ebc9b;
    margin-bottom: 20px;
}

.sessions-title {
    font-size: 16px;
    font-weight: 700;
    color: #375068;
    margin-bottom: 12px;
}

.sessions-count {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.listSessionContainer {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.listSession {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background: #3ebc9b;
    border-radius: 6px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.listSession:hover {
    background: #3ebc9b;
    transform: translateY(-2px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.listSession[style*="indisponível"] {
    background: #3ebc9b;
    cursor: not-allowed;
}

.aprove-info {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    border-left: 4px solid #3ebc9b;
    margin-bottom: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.aprove-info .info-label {
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.aprove-info .info-value {
    color: #24313a;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.aprove-info .approval-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(36, 42, 52, 0.15);
}

.aprove-info .approval-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.aprove-info .approval-status.approved {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.aprove-info .approval-status.rejected {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.emenda-impositiva {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 8px;
    border-left: 4px solid #3ebc9b;
    margin-bottom: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sessoes-container {
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 6px;
    border-left: 3px solid #3ebc9b;
    margin-bottom: 16px;
    margin-top: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sessoes-title {
    font-size: 14px;
    font-weight: 600;
    color: #3ebc9b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(36, 42, 52, 0.15);
}

.sessoes-empty {
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 6px;
    border-left: 3px solid #3ebc9b;
    margin-bottom: 16px;
    margin-top: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #64748b;
    font-size: 14px;
    font-style: italic;
    text-align: center;
}

.emenda-title {
    font-size: 15px;
    font-weight: 600;
    color: #3ebc9b;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(36, 42, 52, 0.15);
}

.emenda-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.emenda-item {
    display: flex;
    flex-direction: column;
}

.emenda-label {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.emenda-value {
    font-size: 14px;
    font-weight: 600;
    color: #24313a;
}

.onaprove {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 8px 15px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.approval-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.approval-status.approved {
    background: #dcfce7;
    color: #166534;
}

.approval-status.rejected {
    background: #fee2e2;
    color: #991b1b;
}

.titleProcessing {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background-color: #3ebc9b;
    padding: 10px 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.processing-info {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.processing-card {
    background: #ffffff;
    border: 1px solid #e6edf2;
    border-radius: 6px;
    padding: 12px 14px;
    box-shadow: 0 4px 12px rgba(31, 58, 86, 0.06);
    transition: all 0.3s ease;
}

.processing-card:hover {
    box-shadow: 0 12px 24px rgba(31, 58, 86, 0.12);
    transform: translateY(-2px);
}

.processing-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #d7e5ef;
    gap: 8px;
    flex-wrap: wrap;
}

.processing-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin-bottom: 10px;
}

.processing-card__item {
    margin-bottom: 6px;
}

.processing-card__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #5b6f7b;
    font-weight: 600;
}

.processing-card__value {
    font-size: 14px;
    color: #24313a;
    font-weight: 600;
}

.processing-card__warning {
    color: #c0392b;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .indicators {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .processing-card__grid {
        grid-template-columns: 1fr;
    }

    .ProtocolInfo {
        flex-direction: column;
    }

    .documents-list {
        gap: 8px;
    }

    .document-item {
        padding: 10px;
    }

    .emenda-grid {
        grid-template-columns: 1fr;
    }

    .listSessionContainer {
        gap: 8px;
    }

    .listSession {
        padding: 8px 16px;
        font-size: 14px;
    }
}

.update-info {
    background: #f8f9fa;
    border: 1px solid #e3e6ea;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9em;
    color: #444;
    max-width: 320px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    line-height: 1.5;
    position: absolute;
    z-index: 1000;
}

.update-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.update-item {
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed #ddd;
    padding-top: 5px;
    margin-top: 5px;
}

.update-item:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.update-item .label {
    color: #666;
}

.update-item .value {
    font-weight: 500;
    color: #000;
}

@media (max-width: 700px) {
    .update-info {
        display: none !important;
    }

}

.buttonDiv {
    width: 140px;
}

.buttonViewDoc {
    background-color: #2a6eb5;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}


.buttonViewDoc:hover {
    color: white;
    font-weight: 600;
}

.buttonViewDoc i {
    margin-right: 4px;
}

.docAprovedInd {
    background-color: #166534;
    color: #fff;
}

.docAprovedInd i {
    margin-right: 4px;
}

.docLeadInd {
    width: 100px;
    padding: 4%;
    border-radius: 4px;
    font-weight: 600;
    background-color: #166534;
    color: white;
}

.docLeadInd i {
    margin-right: 4px;
}

.ReadAproved {
    display: flex;
}

.descriptionDocment p {
    color: #333 !important;
    padding: -1px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-wrap: auto;
    color: #666;
}

.descriptionTableDocment {
    width: 750px;
}

.descriptionTableProject {
    width: 750px;
}

.buttonViewDoc,
.docAprovedInd {
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    min-height: 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
}

.buttonPauta {
    background-color: #2f77b6;
}

.buttonAta {
    background-color: #f0ad4e;
}

.buttonPreop {
    background-color: #5bc0de;
}

.buttonProject {
    background-color: #236534;
}

.ButtonAtaPautas a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    line-height: 1;
    transition: all .15s ease-in-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}

.ButtonAtaPautas a:hover {
    color:white;
}

.buttoResume{
   background-color: #166534;
   color:white;
   padding:5px;
   border-radius: 4px;
   font-size:12px;
   text-transform: uppercase;
}

.buttoResume i{
   margin-left: 4%;
}

.buttoResume,
.buttoResume:hover,
.buttoResume:focus,
.buttoResume:active {
    color: #fff !important;
}

.buttonVideo{
   background-color:red;
   color:white;
   padding:5px;
   border-radius: 4px;
   font-size:12px;
   text-transform: uppercase;
}

.buttonVideo:hover{
   color:white;
}

.buttonPesquisa{
    color:white;
    background-color: #2f77b6;
}
