/* LOGIN */
.login-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 400px;
}
.logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}
.btn-custom {
    background-color: #5c1672;
    border: none;
    color: white;
    font-weight: bold;
    border-radius:7px;
}
.btn-custom:hover {
    color: white;
    background-color: #300551;
}


/* MAIN */
body {
    background: linear-gradient(135deg, 
    #1e0035 0%,
    #4b017d 50%,
    #7f1e9c 100%
  );
  overflow-x: hidden;
  overflow-y: hidden;
}

/* SIDEBAR COLUMN */
.left-menu-l {
    min-height: 100vh;
    background-color: rgba(55, 12, 64, 0.469);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0px 12px 12px 0px;
    width:270px;
    padding:8px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 0px;
    transition: transform 0.3s ease;
}

.left-menu-l.active {
  transform: translateX(0);
}

.hidden-btn {
    display:none;
}

.hidden2-btn {
    display:block;
}

@media (max-width: 1150px) {
.left-menu-l {
    transform: translateX(-100%);
}
.hidden-btn {
    display:block;
}
.hidden2-btn {
    display:none;
}
}

.sidebar-logo-container {
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);;
    padding-bottom:8px;
    margin-right: -8px !important;
}
.sidebar-items-container {
    padding-left:30px;
    padding-right:30px;
}

.sidebar-active-div {
    background-color: rgba(111, 26, 126, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 0px;
}

.sidebar-item-lg {
    padding-top:5px;
    padding-left:15px;
    padding-bottom:5px;
    margin-bottom:10px;
}

.sidebar-item-lg:hover {
    background-color: rgba(111, 26, 126, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 0px;
}

.sidebar-icon-lg {
    font-size:21px;
    color:white;
}

.sidebar-custom-a-lg {
    font-size:18px;
    text-decoration:none;
    color:white;
    font-weight:150;
}

/* HEADER */
.main-header-lg {
    min-height:59px;
    background-color: rgba(71, 15, 82, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0px 0px 12px 12px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 0px;
}

.header-icon-lg {
    font-size:28px;
    color:white;
}



/* MAIN CONTAINER */
.main-container {
    margin-top:90px !important;
    margin-left: 365px;
    width: calc(100% - 460px);
    height: 80dvh;
}

@media (max-width: 1150px) {
.main-container {
    width: 90%; /* o cualquier ancho que no sea 100% */
    margin: 0 auto;
    height: 90dvh;
    margin-top:85px !important;
}
}


/* CARDS CONTAINER */

.cards-container {
    margin-top:30px;
    overflow-y: auto;
    height: 80dvh;
    overflow-x: hidden;
}
/* CUSTOM CARD */

.custom-card {
    background-color: #262545;
    border:1px solid #344255;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 0px;
    padding: 15px;
    width:100%;
    border-radius:12px;
}

.card-icon {
    min-width:40px;
    min-height:40px;
    background-color: #3c266e;
    border-radius:10px;
    cursor: pointer;
}

.card-item-image {
    min-width:100px;
    min-height:100px;
    background-color: #3c266e;
    border-radius:10px;
    cursor: pointer;
}

.custom-tag-body {
    width:100%;
}
.custom-card-header {
    
}


/* QUOTE LINES */
.quote-lines-container {
    border-radius:8px;
    border: 1px solid #3c266e;
    height:350px;
    max-height:500px;
    overflow: auto;
}

.input-custom {
    height: 44px !important;
    border-radius:8px !important;
    background-color: transparent !important;
    color:white !important;
    border: 1px solid #ccccccbe !important;
}
.input-custom::placeholder {
  color: #aaaaaadb !important;
  opacity: 1 !important;
}

.p-table {
    color: #898989;
    margin-bottom:0px;
}

#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    z-index: 2050;
    display: none;
}

#loadingScreen .spinner-border {
    width: 4rem;
    height: 4rem;
}

/* CUSTOM-IMAGE-INPUT */
.upload-container input[type="file"] {
    display: none;
  }
  
  .upload-box {
    border: 2px dashed #4e1b99;
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .upload-box:hover {
    background-color: #f9f9f9;
  }
  
  .upload-box.dragover {
    background-color: #e8e8e8;
    border-color: #8CADFD;
  }
  
  .upload-box .icon {
    font-size: 2rem;
    color: #1A4721;
  }
  
  .upload-box h5 {
    font-weight: bold;
    margin: 15px 0;
  }
  
  .upload-box a {
    color: #8CADFD;
    text-decoration: none;
  }
  
  .upload-button {
    background-color: #1A4721;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 1rem;
    margin-top: 20px;
    width: 100%;
  }
  
  .download-button {
    background-color: #8CADFD;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 1rem;
    margin-top: 20px;
    width: 100%;
  }
  
  .upload-button:hover {
    background-color: #8CADFD;
  }


  .table-wrapper {
    max-height: 300px;
    overflow-y: auto;
    display: block;
  }
  
  .table-wrapper table {
    width: 100%;
    border-collapse: separate;
  }
  
  .table-wrapper thead th {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 20;
  }






.invoice-header {
    background-color: #eef2f8;
    padding: 30px;
    border-radius: 8px;
}

.custom-p-invoice {
    color:#a2a2a2;
    margin-bottom:0px;
    font-size:13px;
}

.invoice-custom-table {
    border-radius:0px !important;
}

.hidden {
  display: none;
}

/* QUOTE EXPENSES */
.quote-expenses-container {
    border-radius:8px;
    border: 1px solid #3c266e;
    height:350px;
    max-height:500px;
    overflow: auto;
}

/* QUOTE PAYMENTS */
.quote-payments-container {
    border-radius:8px;
    border: 1px solid #3c266e;
    height:350px;
    max-height:500px;
    overflow: auto;
}


/* QUOTE SUMMARY */

.summary-icon {
    background: white;
    border-radius: 5px;
    width: 35px;
    height: 35px;
}

.summary_status {
    min-height: 50px;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.summary_total {
    background: #8474b8;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    padding-bottom:8px;
    padding-top:15px;
    padding-left:18px;
    padding-right:18px;
    cursor:pointer;
}

.summary_expenses {
    background: #f1a953;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    padding-bottom:8px;
    padding-top:15px;
    padding-left:18px;
    padding-right:18px;
    cursor:pointer;
}

.summary_payments {
    background: #4e83bb;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    padding-bottom:8px;
    padding-top:15px;
    padding-left:18px;
    padding-right:18px;
    cursor:pointer;
}

.summary_revenue {
    background: #65ab45;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    padding-bottom:8px;
    padding-top:15px;
    padding-left:18px;
    padding-right:18px;
}

.summary_conclusion {
    
}