
.container{
  width: 100%;
  background-color: white;
}

.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 15px;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}

.financial-summary,
.sale-container,
.confirm-delete,
.confirm-sale,
.container-sales {
  height: 100%;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  background-color: white;
}

.sale-container,
.confirm-sale {
  padding-top: 20px;
}

.confirm-delete {
padding-top: 150px;
}

.form-control[readonly] {
  background-color: #e9ecef; /* Color de fondo para campos de solo lectura */
  color: #495057; /* Color de texto para campos de solo lectura */
  border: none; /* Quitar borde */
  outline: none; /* Quitar contorno al hacer clic */
  cursor: default; /* Cambiar el cursor a predeterminado */
}

#selectRfcForm{
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 25px;
  margin-bottom: 65px;
}

#equipmentContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.equipment-item {
  border: 1px solid #ccc;
  padding: 10px;
  margin: 5px;
  cursor: pointer;
}

.form-group-status select {
  width: 30%;
  margin-left: 255px; 
}

.card.pending {
  border: 1px solid #ff8800;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.card.on_hold {
  border: 1px solid #ff0000;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.card.in_review {
  border: 1px solid rgb(56, 141, 238);
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.card.ready_to_deliver {
  border: 1px solid rgb(108, 240, 108);
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.card.pending .service-select-button {
  background-color: #ffffff;
  color: #646363;
  border: 1px solid #ff8800;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 16px;
  box-shadow: 0 10px 10px -8px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.card.on_hold .service-select-button {
  background-color: #ffffff;
  color: #646363;
  border: 1px solid #ff0000;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 16px;
  box-shadow: 0 10px 10px -8px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.card.pending .service-select-button:hover {
  background-color: #ff8800;
  color: #fff;
}

.card.on_hold .service-select-button:hover {
  background-color: #ff0000;
  color: #fff;
}

.card.in_review .service-select-button {
  background-color: #ffffff;
  color: #646363;
  border: 1px solid rgb(56, 141, 238);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 16px;
  box-shadow: 0 10px 10px -8px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.card.in_review .service-select-button:hover {
  background-color: rgb(56, 141, 238);
  color: #fff;
}

.card.ready_to_deliver .service-select-button {
  background-color: #ffffff;
  color: #646363;
  border: 1px solid rgb(108, 240, 108);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 16px;
  box-shadow: 0 10px 10px -8px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.card.ready_to_deliver .service-select-button:hover {
  background-color: rgb(108, 240, 108);
  color: #fff;
}

.on-hold-title {
  color: red;
  text-shadow: 2px 2px 3px rgba(255, 0, 0, 0.2);
}

.in-review-title {
  color: rgb(56, 141, 238);
  text-shadow: 2px 2px 3px rgba(56, 141, 238, 0.2);
}

.ready-to-delivery-title {
  color: rgb(108, 240, 108);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.card-text {
  font-size: 14px;
  color: #646363;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.status-field {
    margin: 10px 2px;
    border: 2px solid #C5C6CC;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    padding: 10px 15px;
    width: 100%; 
}

.service-details-img img {
  display: block;
  margin: 0 auto;
}

.service-details-img {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: fit-content;
  height: fit-content;
  max-width: 200px;
  max-height: 200px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  margin: 0 auto; 
}


.border-pending {
  border: 2px solid #ff8800;
}

.border-on-hold {
  border: 2px solid #fd1515;
}

.border-in-review {
  border: 2px solid rgb(56, 141, 238);
}

.border-ready_to_deliver {
  border: 2px solid rgb(108, 240, 108);
}

.button-pending {
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  background-color: #ff8800;
  border-color: #ff8800;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  transition: all 300ms ease-in-out; 
}

.button-on-hold {
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  background-color: #fd1515;
  border-color: #fd1515;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  transition: all 300ms ease-in-out; 
}

.button-in-review {
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  background-color: rgb(56, 141, 238);
  border-color: rgb(56, 141, 238);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); 
  transition: all 300ms ease-in-out; 
}

.button-ready_to_deliver {
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  background-color: rgb(108, 240, 108);
  border-color: rgb(108, 240, 108);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); 
  transition: all 300ms ease-in-out; 
}

.button-pending:hover {
  background-color: #ff7300;
  border-color: #ff7300;
}

.button-on-hold:hover {
  background-color: #ca1111;
  border-color: #ca1111;
}

.button-in-review:hover {
  background-color: rgb(42, 105, 177);
  border-color: rgb(42, 105, 177);
}

.button-ready_to_deliver:hover {
  background-color: rgb(87, 190, 87);
  border-color: rgb(87, 190, 87);
}


.link-gallery-container button {
  margin-right: 5px; 
}

.link-gallery {
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  padding: 8px 16px;
  background-color: #dc3545;
  border: 1px solid #dc3545;
  border-radius: 4px;
}

.link-gallery-container {
  display: inline-block; 
}

.contact-link {
  font-size: 14px;
  color: #646363;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  text-decoration: underline;
  cursor: pointer;
}


.contact-link:hover,
.link-gallery:hover {
  color: black;
}

.service-select-button {
  display: block;
  margin: 15px auto;
}

.client-select2,
.client-equipment-select2 {
  width: 100%; 
  height: 45px !important;
}

.button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-details-card .card-body p {
  font-size: 16px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin-bottom: 8px;
}

.service-details-card .card-header h5.card-title {
  font-size: 20px;
  font-family: Arial, sans-serif;
  margin-bottom: 12px;
}

.client-repairs-select2 {
  width: 300px;
}

.subscription-container,
.services-container,
.service-details-container,
.container-service-register,
.edit-service-container,
.edit-subscription-container,
.sale-continer {
  background-color: white;
  height: 100%;
}

.services-row {
  margin-left: 10rem;
  margin-right: 10rem;
}
.service-register-row {
  margin: 0rem 5rem;
  padding-top: 3rem;
}

.service-details-container {
  padding: 20px;
}
.service-details-card {
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.service-details-card .card-header {
  background-color: #f0f0f0;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}
.service-details-card .card-title {
  margin-bottom: 0;
}
.service-details-card .card-body p {
  margin-bottom: 5px;
}
.carousel-container {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  max-height: 500px; 
  box-shadow: 2px 2px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.carousel-container .carousel {
  margin: 0;
}
.carousel-inner img {
  max-width: 100%;
  height: auto;
}

.service-details-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.title-edit-service {
  font-weight: bold;
  text-align: center;
  color: #333;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}

.title-edit-subscription{
  font-size: 2.5rem;
  margin-left: 1rem;
}

.hr-divider{
  color: #C5C6CC;
}

.form-control-filter{
  width: 20rem;
}

.subscription-title {
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.card.netflix,
.card.spotify,
.card.hbo,
.card.disney,
.card.prime {
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.month-cell {
  width: 7rem;
}

.custom-table {
  width: 100%;
  border: 2px solid #dee2e6; 
}

.custom-table th,
.custom-table td {
  padding: 8px; 
  text-align: center; 
}

.custom-table th {
  background-color: #f2f2f2; 
}

.custom-table tbody tr:nth-child(odd) {
  background-color: #f8f9fa; 
}

.whatsapp-btn {
  background-color: #25D366 !important;
  padding: 5px 10px !important;
  border-radius: 5px !important;
  border-color: transparent !important;
  transition: all 300ms ease-in-out !important;
}

.whatsapp-btn:hover {
  background-color: #1faf54 !important;
}

.whatsapp-btn i {
  font-size: 24px !important; 
  color: #ffffff !important; 
}

.year-input {
  max-width: 6rem; 
}

.subscription-table-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  color: #333;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}


.card-client-payment,
.card-table-products{
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.quantity-input {
  width: 50px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}


.product-delete-button {
  background-color: red;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.product-delete-button:hover {
  background-color: rgb(223, 0, 0);
}

.btn-success-sale{
  width: 100%;
}

.table-total-price {
  width: 15%; /* Ancho completo */
}

.btn-client-register{
  margin-left: 0.5rem;
}

.fa-user-plus-custom{
  font-size: 2.5rem !important;
}

.main__container {
  width: 100%;
  height: 100%;
  background-color: white;
}

.container__appsCategory {
  min-height: 26.5rem;
  background-color: #fff;
  padding: 20px;
  position: relative;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category__color {
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.appsCategory__title {
  font-size: 1.75rem;
  margin-bottom: 10px;
  font-weight: bold;
  padding-left: 10px;
}

.appsCategory__list {
  padding: 0;
  list-style-type: none;
}

.appsCategory__item {
  margin-bottom: 5px;
}

.appsCategory__element {
  display: inline-block;
  text-decoration: none;
  color: #007bff;
  padding: 5px 10px; 
}

.appsCategory__element:hover {
  text-decoration: underline;
}

.form-register-container{
  padding: 14rem;
}

.main-container-sales {
  min-height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
}

.filter-table-container{
  margin: 0 10rem;
}

.text-filter{
  font-size: 1.2rem;
}

.review-bordered-table th,
.review-bordered-table td{
  border: 1px solid #cccccc;
}

.review-bordered-table .thead-dark th {
  border: 1px solid #cccccc;
}

.review-bordered-table img {
  max-width: 50px;
  height: auto;
}

.category-index-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}

.category-list-link {
  font-size: 1.2rem;
  color: #007bff;
  display: flex;
  align-items: center;
  transition: color 0.3s ease-in-out;
}

.category-list-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.category-list-icon {
  font-size: 1.5rem !important;
  color: #343a40;
}

