body {
   background-color: #edf6f1;
   color: #152f2a;
   font-family: 'Source Sans Pro', sans-serif;
 }
 
 .company-index-container {
   max-width: 1000px;
   margin: 2rem auto;
   padding: 2rem;
   background-color: white;
   border-radius: 12px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }
 
 .company-index-title {
   color: #0a2622;
   font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
   position: relative;
   padding-bottom: 0.5rem;
 }
 
 .company-index-title::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: 0;
   width: 50px;
   height: 3px;
   background-color: #28a745;
 }
 
 .btn-create-company {
   background-color: #28a745;
   color: white;
   padding: 0.75rem 1.5rem;
   border-radius: 8px;
   font-weight: 600;
   text-decoration: none;
   display: inline-block;
   margin-bottom: 2rem;
   transition: all 0.3s ease;
 }
 
 .btn-create-company:hover {
   background-color: #218838;
   transform: translateY(-2px);
 }
 
 .company-list {
   display: grid;
   gap: 1.5rem;
 }
 
 .company-card {
   background-color: #f8f9fa;
   border-radius: 8px;
   padding: 1.5rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   transition: all 0.3s ease;
 }
 
 .company-card:hover {
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   transform: translateY(-2px);
 }
 
 .company-info {
   flex-grow: 1;
 }
 
 .company-name {
   color: #152f2a;
   font-size: 1.25rem;
   font-weight: 600;
   margin-bottom: 0.5rem;
 }
 
 .company-detail {
   color: #495057;
   margin-bottom: 0.25rem;
 }
 
 .company-detail i {
   width: 20px;
   color: #28a745;
 }
 
 .company-actions {
   display: flex;
   gap: 0.5rem;
 }
 
 .btn {
   padding: 0.5rem 1rem;
   border-radius: 6px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s ease;
 }
 
 .btn-view {
   background-color: #17a2b8;
   color: white;
 }
 
 .btn-view:hover {
   background-color: #138496;
 }
 
 .btn-edit {
   background-color: #ffc107;
   color: #212529;
 }
 
 .btn-edit:hover {
   background-color: #e0a800;
 }
 
 .btn-delete {
   background-color: #dc3545;
   color: white;
 }
 
 .btn-delete:hover {
   background-color: #c82333;
 }
 
/* Estilos generales para el formulario */
.upload-form-custom {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilos para los campos de entrada */
.upload-form-custom .custom-input-group {
  margin-bottom: 1rem;
}

.upload-form-custom .custom-input-group label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: .5rem;
  display: block;
}

.upload-form-custom .custom-file-input {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  border-radius: .375rem;
  border: 1px solid #ced4da;
  background-color: #ffffff;
}

.upload-form-custom .custom-file-input:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(0, 123, 255, 0.25);
}

.upload-form-custom .custom-upload-btn {
  display: inline-block;
  padding: .5rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: .375rem;
  color: #fff;
  background-color: #28a745;
  border-color: #218638;
  transition: all 0.15s ease-in-out;
}

.upload-form-custom .custom-upload-btn:hover {
  background-color: #28a745;
  border-color: #218638;
}

.upload-form-custom .custom-upload-btn:focus {
  outline: none;
  box-shadow: 0 0 0 .25rem rgba(0, 123, 255, 0.25);
}

 @media (max-width: 768px) {
   .company-card {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .company-actions {
     margin-top: 1rem;
   }
 }