/* FONTS AND COLORS */

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
@import "https://fonts.googleapis.com/css?family=Roboto+Condensed:600,700";

:root {
    --distrito-pink: #e60064;
    --distrito-light-pink: #ff92c1;
    --distrito-light-pink-02: #fde6f0;
    --gray-01: #e6e6e6;
    --gray-02: #b3b3b3;
    --gray-03: #808080;
    --gray-04: #4c4c4c;
    --gray-05: #2a2a2a;
}

/* MAIN TAGS */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    font-size: 0.9rem;
}

h1,
h2,
h3,
h4 p {
    font-family: 'Roboto Condensed', 'Helvetica', sans-serif;
}

h1 {
    padding-top: 5px;
    margin-bottom: 5px;
    border-bottom: 1.5px solid var(--distrito-pink);
    text-align: center;
    font-size: 2.3rem;
}

h2{
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0px;
    font-size: 1.7rem;
    border-bottom: 1.5px solid var(--gray-02);
}

h3 {
    margin: 20px;
    font-size: 1.4rem;
    color: var(--gray-03)
}

h4 {
    color: var(--gray-02);
    font-size: 0.9rem;
    margin: 0;
}

code {
    font-size: 0.9rem;
    font-weight: bold;
}

canvas {
    height: 150px;
    width: 150px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--gray-03);
}

svg {
    margin-right: 20px;
}

body {
    display:flex;
    flex-direction: column;
    align-content: stretch;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--gray-04);
    font-family: 'Helvetica', sans-serif;
}

main {
    transition: background 0.3s ease;
    width: 100%;
    max-width: 100%;
    background-color: var(--gray-01);
    display: flex;
    flex-direction: row;
}

main p {
    transition: color 0.3s ease;
}

p {
    background: none !important;
}

a {
    text-decoration: none;
}

a.documentation {
    text-decoration: underline;
    color: var(--distrito-pink);
}



.wrapper {
    display: flex;
    align-items: stretch;
    max-width: 100%;
    background-color: var(--gray-01);
}

/* 404 */

#box-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 360px;
    width: 100%;
}

#title-404 {
    font-size: 136px;
    margin:0;
    padding: 0;
}

#text-404 {
    font-size: 25px;
}

#link-404 {
    padding-top: 50px;
    font-size: 18px;
    color: var(--gray-04);
}

#link-404:hover {
    color: var(--distrito-pink);
}

#link-404:focus{
    color: var(--distrito-light-pink);
}

/* CONTAINERS */

.jumbotron {
    width: 100%;
}
.btn-box {
    margin: 0 20px;
    background-color: white;
    border-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 2;
    margin: 20px;
    max-width: 97%;
}

.partial-width {
    transition: width 2s;
}

.card-header {
    padding: 20px;
    margin-top: 20px;
    background-color: white;
    border-color: white;
}

.top-card {
    margin-top: 0px;
}

.data-p {
    font-weight: 600;
    color: var(--distrito-pink)
}

.update-separator {
    height: 20px;
    width: 100%;
    background-color: white;
}

.grey-update-separator {
    height: 20px;
    width: 100%;
    background-color: var(--gray-01);

}

/* HEADER */

header {
    display: flex;
    flex-direction: row;
}

.distrito-logo-div a {
    min-width: 130px;
    max-width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.distrito-logo {
    max-height: 20px;
    max-height: 30px;
    object-fit: contain;
    margin: 15px;
}

.header-icon {
    width: 56px;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-blank-space{
    height: 100%;
    flex: 1;
}

.user-div {
    height: 100%;
    width: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: right;
}

.user-div h4 {
 margin-right: 20px;
}

#profile-icon {
    margin-right: 10px;
}

/* BUTTONS */
.btn-primary, .btn-secondary, .btn-squared {
    background-color: var(--gray-04);
    border-color: var(--gray-04);
    border-radius: 5px;
    color: white;

}

.btn-primary {
    width: 500px;
}

.btn-primary:hover:not([disabled]),
.btn-secondary:hover:not([disabled]),
.btn-squared:hover:not([disabled]) {
    background-color: var(--distrito-pink);
    border-color: var(--distrito-pink);
    color: white;
}

.btn-primary:focus, 
.btn-secondary:focus, 
.btn-squared:focus {
    background-color: var(--distrito-light-pink);
    border-color: var(--distrito-light-pink);
    color: white;
}

.btn-primary[disabled],
.btn-secondary[disabled],
.btn-squared[disabled]{
    background-color: var(--gray-02);
    color: white;
    border: None;
    cursor: default;
}

.btn-primary[disabled]:hover,
.btn-secondary[disabled]:hover,
.btn-squared[disabled]:hover{
    background-color: var(--gray-02);
    border-color: None;
    color: white;
}

.update-enterprise-btn-container {
    display: flex;
    flex-direction: row;
    justify-content: end;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
}

/* REGISTER PAGE */

.text-register p {
    font-family: 'Helvetica', sans-serif;
    text-align: center;
    font-weight: 600;
    font-size: 27px;
    padding: 20px;
    margin: 0
}



/* LOGIN PAGE */

#login_page {
    height: 360px;
}

.header-login {
    display: flex;
    justify-content: left;
    width: 100%;
    height: 56px;
    background-color: black;
    border-bottom: 3px solid var(--distrito-pink);
}

.card-title {
    margin: 0;
    padding: 10px 0;
}

.btn-distrito-login {
    align-self: center;
    background-color: var(--distrito-pink);
    border-radius: 15px;
    border: #00000033 1px solid;
    color: rgb(255, 255, 255);
    font-family: 'Helvetica', sans-serif;
    margin-top: 20px;
    text-align: center;
    width: 350px;
    font-size: large;
    line-height: 0.5;
}

.text-login p {
    font-family: 'Helvetica', sans-serif;
    text-align: center;
    font-weight: 600;
    font-size: 30px;
}

.main-login h3,
h2 {
    padding: 0;
}

.main-login {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 560px;
    width: 100%;
}

.cd-sistema {
    font-family: 'Poppins', 'Helvetica', sans-serif;
    font-size: 2.5rem;
}

.cd-crud {
    font-family: 'Poppins', 'Helvetica', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--distrito-pink);
}

.card {
    background-color: none;
    border: 0px;
}

.card-body {
    background-color: white;
    min-height: 500px;
}

.card-body-login {
    background: rgba(219, 218, 218, 0.22);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.5px);
    -webkit-backdrop-filter: blur(6.5px);
    border: 1px solid rgba(194, 194, 194, 0.3);
    height: 450px;
    width: 450px;
    text-align: center;

}

.card-body-login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#register_page {
    height: 520px;
}

.login-helper {
    text-align: center;
    display: flex;
    justify-content: space-around;
}

.login-helper a {
    color: var(--distrito-pink);
    text-decoration: none;
}

.card-body-login #email,
#password,
#pass_confirm,
#username {
    margin-top: 20px;
    width: 350px;
    font-family: 'Helvetica', sans-serif;
    text-align: center;
    height: 40px;
    border: #00000033 1px solid;
    font-size: 20px;
    border-radius: 15px;
    background-color: #00000024;
}

.card-body-login hr {
    display: inline-block;
    width: 70%;
    color: var(--gray-03);
    align-items: center;
}

.text-container {
    text-align: center;
    width: 50%;
    top: 0;
    margin-bottom: 13rem;
}

.text-justify {
    color: var(--gray-03);
}

.btn-distrito {
    color: rgb(255, 255, 255);
    background-color: var(--distrito-pink);
    font-weight: 500;
    text-align: center;
    align-self: center;
}

.documentation-text{
    padding: 20px;
    padding-top: 0;
    text-align: justify;
}

/* FOOTER */

.copyright-text {
    color: var(--gray-04);
}

.site-footer {
    min-height: 180px;
    flex: 1;
    background-color: black;
    padding: 25px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: var(--gray-03);
    border-top: 3px solid var(--distrito-pink);
}

.site-footer hr {
    border-top-color: var(--distrito-pink);
    opacity: 0.5
}

.site-footer hr.small {
    margin: 20px 0
}

.site-footer h6 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 2px
}

.site-footer a {
    color: var(--distrito-pink);
}

.site-footer a:hover {
    color: var(--distrito-pink);
    text-decoration: none;
}

.footer-links {
    padding-left: 0;
    list-style: none
}

.footer-links li {
    display: block
}

.footer-links a {
    color: var(--distrito-pink)
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
    color: var(--distrito-pink);
    text-decoration: none;
}

.footer-links.inline li {
    display: inline-block
}

.site-footer .social-icons {
    text-align: right
}

.site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: var(--gray-04)
}

.copyright-text {
    margin: 0
}

@media (max-width:991px) {
    .site-footer [class^=col-] {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    .site-footer {
        padding-bottom: 0
    }

    .site-footer .copyright-text,
    .site-footer .social-icons {
        text-align: center
    }
}

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.social-icons li {
    display: inline-block;
    margin-bottom: 4px
}

.social-icons li.title {
    /* margin-right:15px; */
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 13px
}

.social-icons a {
    background-color: #eceeef;
    color: #818a91;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    text-align: center;
    /* margin-right:8px; */
    border-radius: 100%;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

/* SIDEBAR */

.navbar {
    color: var(--grey-1);
    background-color: black;
    padding: 15px 10px;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);

}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

#sidebar {
    min-width: 200px;
    max-width: 200px;
    background: var(--gray-05);
    color: rgb(233, 233, 233);
    transition: all 0.3s;
    position: absolute;
    z-index: 10;
    height: 100%;
}

#sidebar.inactive {
    transform: translateX(-200px);
}

#sidebar .sidebar-header {
    height: 56px;
    background: var(--gray-05);
}
#sidebar .sidebar-header svg {
    padding:5px 0px 5px 0;
}

#sidebar ul.components {
    padding: 20px 0;
}

.sidebar-link {
    color: white;
    padding: 10px;
    padding-left: 20px;
    font-size: 1em;
    display: block;
    text-decoration: none;
}

.sidebar-link:hover {
    background: var(--distrito-pink);
    color: white;
    text-decoration: none;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: var(--distrito-pink);
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: var(--gray-04);
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }

}

/* GLITCH */

.section-glitch {
    display: flex;
    justify-content: center;
}
.container-glitch {
    max-width: fit-content;
}

/* DATATABLE */
table {
    background-color: white;
    margin: 20px;
    box-sizing: content-box;
    table-layout: auto;
    max-width: calc(100% - 40px);
}

table a{
    color: var(--distrito-pink)
}

tr, td {
    white-space: nowrap;
    padding: 5px;
}

.list-properties,
.list-sectors,
.list-investors {
    table-layout: auto;
    width: 100%;
}




.table-box {
    max-width: 100%;
    background-color: white;
    border-color: white;
    overflow-x: auto;
    overflow-y: auto; 
}

.dt-link {
    color: var(--distrito-pink);
    text-decoration: none;
}

.dt-head-left td{
    color: var(--distrito-pink);
}

thead {
    color: var(--distrito-pink);
    font-weight: 800;

}

.dataTables_length label {
    padding-left: 5px;
}

.dataTables_filter{
    min-width: 500px;
    font-weight: 700;
    align-items: start;
    display: flex;
  }

.paginate_button a {
    color: var(--gray-04)
}

.page-item.active .page-link {
    background-color: var(--distrito-pink);
    border-color: var(--distrito-pink);
}

.dataTables_filter label input {
    width: 500px !important;
}

.data-table-link,
.deal-source-link,
.table-link {
    color: #e60064;
    text-align: left;
}

.data-table-link:visited,
.deal-source-link:visited,
.table-link {
    color: var(--distrito-light-pink);
}

.btn-grey {
    width: 35px;
    color: rgb(255, 255, 255);
    background-color: var(--gray-04);
    font-weight: 500;
    text-align: center;
    align-self: center;
}


/* UPDATE ENTERPRISE */

#low_information, #blocklist, #main_sector {
    width: 25px;
    height: 25px;
}

input[type=checkbox] {
    accent-color: var(--distrito-pink) !important;
  }


.blank-space-content{
    background-color: white;
}

.blank-space-content{
    background-color: var(--distrito-light-pink-02);
}

.disable-page { 
    color: var(--gray-03);
}

.badge-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
    
.badge {
    background-color: var(--distrito-pink);
}


.startup-profile {
    height: 120px;
    display: flex;
    background-color: var(--gray-01);
    border-bottom: 20px;
}

.startup-icon {
    height: 120px;
    width: 120px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;

}

.startup-logo {
    max-height: 100px;
    max-width: 100px;
    object-fit: contain;
}

.startup-name {
    color: var(--distrito-pink);
    height: 100%;
    width: calc(100% - 120px);
    font-family: 'Roboto Condensed', 'Helvetica', sans-serif;
    font-size: 4rem;
    padding-left: 26px;
    display: flex;
    align-items: center;
}

/* OTHER */
.jumbotron {
    background-color: white;
}

.enterprise-info {
    text-align: left;
    background-color: white;
    padding: 20px;
}



.ent-property-name {
    text-align: left;
    font-weight: bold;
    width: 210px;
}

.ent-property-value {
    text-align: left;
}

.main-nav a {
    text-decoration: none;
    padding: 5px 10px;
    color: #fff;
    font-weight: 600;
    transition: all ease 0.1s;
    margin-left: 3px;
}

.main-nav {
    display: flex;
}

.main-nav li {
    list-style-type: none;
}

.container .row {
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

#update_enterprise .container .row {
    justify-content: space-between;
}

.form-group {
    display: flex;
    font-size: 14px;
    margin: 10px 20px;
    width: calc(100% - 40px);
}

.form-control {
    font-size: 14px;
    margin: 0;
}

.submit-div {
    text-align: center;
}

.form-select {
    margin: 0px;
    margin-right: 10px;
}

#valid:checked {
    background-color: var(--distrito-pink);
}

.form-group .container {
    width: 55%;
}

.valida-main {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 6rem;
}

#confidential {
    width: 49%;
}

#valida-enterprise-up input:not(.btn) {
    background: rgba(235, 235, 235, 0.22);
    border-radius: 16px;
    backdrop-filter: blur(6.5px);
    -webkit-backdrop-filter: blur(6.5px);
    border: 1px solid rgba(194, 194, 194, 0.3);
    align-items: center;
}

#valida-enterprise-up textarea {
    background: rgba(235, 235, 235, 0.22);
    border-radius: 16px;
    backdrop-filter: blur(6.5px);
    -webkit-backdrop-filter: blur(6.5px);
    border: 1px solid rgba(194, 194, 194, 0.3);
    align-items: center;
}

#valida-enterprise-up {
    align-items: center;
}

#valida-enterprise-up select {
    width: 200px;
}


#tags_form .btn {
    margin-top: 15px;
    width: 500px;
}

#tags_form .inputGroupContainer {
    width: 500px;
    display: flex;
    align-items: center;
}

#insert-deals {
    align-items: center;
}

#insert-deals select {
    width: 200px;
}

#insert-deals {
    height: 160vh;
}

#update-search-tag {
    height: 750px;
}

#container-table {
    width: 85%;
    padding-top: 10px;
}

/* DEALS */

#deal-btn {
    height: 50px;
    font-size: 12px;
}

.cadastro-deals {
    text-align: left;
    align-items: left;
    font-size: 14px;
}

.deal-property {
    font-weight: bold;
    width: 200px;
}

.deal-separator {
    height: 40px;
}

#insert-deals input:not(.btn) {
    background: rgba(235, 235, 235, 0.22);
    border-radius: 16px;
    backdrop-filter: blur(6.5px);
    -webkit-backdrop-filter: blur(6.5px);
    border: 1px solid rgba(194, 194, 194, 0.3);
    align-items: center;
}

#insert-deals textarea {
    background: rgba(235, 235, 235, 0.22);
    border-radius: 16px;
    backdrop-filter: blur(6.5px);
    -webkit-backdrop-filter: blur(6.5px);
    border: 1px solid rgba(194, 194, 194, 0.3);
    align-items: center;
}


.alert {
    margin-bottom: 5px;
    width: 100%;
}

#title-something-went-wrong {
    font-size: 60px;
    border: 0px;
}

#text-something-went-wrong {
    font-size: 22px;
}

#description-disabled {
    background-color: var(--distrito-light-pink-02);
    padding: 0px;
}

/* ENTERPRISE REVISION */

.revision_card {
align-items: center;
border: 1px solid rgb(210, 210, 210);
border-radius: 15px;
margin-bottom: 20px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
cursor: default;
user-select: none;
max-width: 820px;
min-width: 820px;
padding: 5px;
}

.inconsistencies_grid{
    display: grid;
    grid-template-columns: 2fr 0.5fr;
    gap: 10px;
    padding: 15px;
    overflow: hidden;
}

.input-hidden{
    display: none;
}

.fixed-element {
    position: fixed;
    bottom: 60px;  /* distância do topo da tela */
    right: 60px;  /* distância da borda direita da tela */
    z-index: 1000; /* garante que o elemento sobreponha outros elementos */
    background-color: rgba(255, 255, 255, 0);
    padding: 10px;
}

.action-panel {
display: flex;
flex-direction: column;
position: relative;
width: 60px;
background-color: #ffffff;
border: 1px solid #cccccc;
border-radius: 5px;
transition: width 0.3s ease;
overflow: hidden;
}

.action-panel:hover {
width: 200px;
overflow: visible;
}

.action-list {
display: flex;
flex-direction: column;
padding: 10px;
}

.action-item {
display: flex;
align-items: center;
margin-bottom: 10px;
text-align: left;
}

.link-icon {
width: 24px;
height: 24px;
margin-right: 10px;
}

.btn-action {
background-color: #f50057;
color: white;
border: none;
border-radius: 5px;
padding: 8px 8px;
cursor: pointer;
font-size: 12px;
text-align: center;
white-space: nowrap;
width: 120px;
margin-left: 5px;
}

.btn-action:hover{
background-color: #ff005c;
}

.card-revision {
flex-grow: 1;
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 15px;
flex-wrap: wrap;
flex-direction: column;
}

.revision-details {
width: 100%;
display: flex;
flex-direction: column;
flex-wrap: wrap;
}

.link-text {
display: flex;
flex-direction: row;
justify-content: start;
align-items: center;
flex-wrap: wrap;
text-decoration: none;
color: black;
}

.info-revision {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: wrap;
}

.info-revision-for-edit {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
flex-direction: row;
margin-top: 8px;
}

.revision-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 15px;
}

.info-item {
display: flex;
flex-direction: row;
align-items: center;
padding: 10px 0;
margin: 0;
flex-wrap: wrap;
}

.info-item+.info-item {
margin-left: 10px;
}

.info-title {
margin: 0;
word-wrap: break-word;
}

.info-content-type {
font-weight: bold;
}

.info-for-edit {
display: flex;
align-items: center;
border: 1px solid rgb(210, 210, 210);
border-radius: 15px;
padding: 10px;
background-color: #f5f5f5;
width: 18%;
box-sizing: border-box;
justify-content: normal;
flex-direction: row;
word-wrap: break-word;
display: flex;
align-items: center;
flex-wrap: wrap;
text-decoration: none;
color: black;
margin: 0;
word-wrap: break-word;
overflow: auto;
white-space: normal;
overflow: hidden;
}

.info-for-edit.original {
background-color: #fde6f0;
margin-bottom: 5px;
width: 60%;
}

.info-for-edit.proposed {
background-color: #e6f9f0;
width: 60%;
}

.info-for-edit:hover {
background-color: #ddf8fb;
}

.btn-hidden{
    display: none;
}

.btn-multi-selection {
    background-color: #f50057;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 8px;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
    white-space: nowrap;
    width: 150px;
    height: 50px;
    margin-left: 5px;
}

.btn-multi-selection:hover{
    background-color: #ff005c;
}

.shr {
width: 0.5px;
height: 15px !important;
background-color: gray;
margin: 0 10px;
border: 0;
}

h2 {
font-size: 1.5em;
line-height: 2.5rem;
margin: 0;
word-wrap: break-word;
}

.link-icon {
fill: rgb(0, 0, 0);
width: 20px;
height: 20px;
margin: 0px 10px;
}

.btn-update {
background-color: #f50057;
color: rgb(255, 255, 255);
border: none;
border-radius: 15px;
padding: 10px 20px;
margin-top: 10px;
cursor: pointer;
}

.btn-update:hover {
background-color: #ff005c;
}

.input-label {
width: 100%;
padding: 10px;
border: 1px solid rgb(210, 210, 210);
border-radius: 15px;
margin-top: 10px;
margin-right: 10px;
}

.input-container{
    display: flex;
    align-items: center;
}

.form-text {
font-size: 1em;
font-weight: bold;
}

@media (max-width: 768px) {
.revision-details {
    margin-right: 0;
}

.info-revision {
    flex-direction: column;
}

.info-for-edit {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
}

.info-for-edit a {
    margin-top: 5px;
}

.action-panel {
    position: static;
    width: 100%;
    margin-top: 20px;
}
}

@media (max-width: 480px) {
.link-icon {
    width: 18px;
    height: 18px;
    margin: 0px;
}

.info-title {
    font-size: 0.9em;
}
}

/* Accordion css */
.accordion {
    background-color:var(--distrito-pink); 
    color: white;
    padding: 18px;
    width: 100%;
    border: 1px solid rgb(210, 210, 210);
    border-radius: 15px 15px 0px 0px;
    margin-top: 20px;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .panel {
    padding: 18px 18px;
    background-color: #eee;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: 1px solid rgb(210, 210, 210);
    border-radius: 0px 0px 15px 15px;
  }

  .panel span{
    color: var(--distrito-pink);
    font-weight: bold;
  }

  .panel p, span{
    font-size: 15px;
  }

  .grid-enterprises {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 10px;
    margin-bottom: 20px;
}

.enterprises-list-grid{
    display: grid;
    grid-template-columns: 2fr 0.5fr;
    gap: 10px;
    padding: 15px;
    overflow: hidden;
}
.enterprise-list-card {
    align-items: center;
    border-radius: 15px;
    margin-bottom: 20px;
    cursor: default;
    max-width: 820px;
    min-width: 820px;
    padding: 5px;
    }
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.pagination a {
    margin: 0 5px;
    padding: 8px 16px;
    text-decoration: none;
    color: black;
    border: 1px solid #ddd;
}
.pagination a.active {
    background-color: var(--distrito-pink);
    color: white;
    border: 1px solid var(--distrito-pink);
}
.pagination a:hover:not(.active) {
    background-color: #ddd;
}

.search-box {
    display: flex;              
    justify-content: space-between;
    align-items: center;         
    padding: 8px;                
    gap: 10px;                  
}