body {
   background-color: #edf6f1;
   color: #152f2a;
   font-family: 'Source Sans Pro', sans-serif;
 }
 
 .company-show-container {
   max-width: 1200px;
   margin: 2rem auto;
   padding: 2rem;
 }
 
 .company-title {
   color: #0a2622;
   font-size: 2.5rem;
   font-weight: 700;
   text-align: center;
   margin-bottom: 2rem;
 }
 
 .company-info-card,
 .team-card,
 .plans-card,
 .new-plan-card {
   background-color: white;
   border-radius: 12px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   padding: 2rem;
   margin-bottom: 2rem;
 }
 
 .section-title {
   color: #28a745;
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 1.5rem;
   position: relative;
   padding-bottom: 0.5rem;
 }
 
 .section-title::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: 0;
   width: 50px;
   height: 3px;
   background-color: #28a745;
 }
 
 .company-info-list {
   list-style-type: none;
   padding: 0;
 }
 
 .company-info-list li {
   margin-bottom: 0.5rem;
 }
 
 .add-user-form,
 .new-plan-form {
   margin-bottom: 2rem;
 }
 
 .form-row {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   margin-bottom: 1rem;
 }
 
 .form-group {
   flex: 1;
   min-width: 200px;
 }
 
 .form-label {
   display: block;
   margin-bottom: 0.5rem;
   font-weight: 600;
 }
 
 .form-input,
 .form-select {
   width: 100%;
   padding: 0.5rem;
   border: 1px solid #28a745;
   border-radius: 4px;
   font-size: 1rem;
 }
 
 .btn {
   padding: 0.5rem 1rem;
   border: none;
   border-radius: 4px;
   cursor: pointer;
   font-weight: 600;
   transition: background-color 0.3s ease;
 }
 
 .btn-primary {
   background-color: #28a745;
   color: white;
 }
 
 .btn-primary:hover {
   background-color: #218838;
 }
 
 .btn-secondary {
   background-color: #6c757d;
   color: white;
 }
 
 .btn-secondary:hover {
   background-color: #5a6268;
 }
 
 .btn-danger {
   background-color: #dc3545;
   color: white;
 }
 
 .btn-danger:hover {
   background-color: #c82333;
 }
 
 .team-table {
   width: 100%;
   border-collapse: collapse;
 }
 
 .team-table th,
 .team-table td {
   padding: 0.75rem;
   text-align: left;
   border-bottom: 1px solid #dee2e6;
 }
 
 .team-table th {
   background-color: #f8f9fa;
   font-weight: 600;
 }
 
 .plans-list {
   list-style-type: none;
   padding: 0;
 }
 
 .plans-list li {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0.75rem 0;
   border-bottom: 1px solid #dee2e6;
 }
 
 .plan-link {
   color: #28a745;
   text-decoration: none;
   font-weight: 600;
 }

.form-check-input {
  margin-right: 0.5rem;
}
 
 .plan-badge {
   background-color: #28a745;
   color: white;
   padding: 0.25rem 0.5rem;
   border-radius: 20px;
   
   font-size: 0.875rem;
 }
 
 .contents-list,
 .questions-list {
   margin-bottom: 1rem;
 }
 
 .question-card {
   background-color: #f8f9fa;
   border: 1px solid #dee2e6;
   border-radius: 8px;
   padding: 1rem;
   margin-bottom: 1rem;
 }
 
 .question-title {
   color: #28a745;
   font-size: 1.25rem;
   margin-bottom: 1rem;
 }
 
 .alternatives-list {
   list-style-type: none;
   padding: 0;
 }
 
 .alternative-item {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0.5rem 0;
   border-bottom: 1px solid #dee2e6;
 }
 
 .alternative-text {
   flex-grow: 1;
 }
 
 .price-variation {
   color: #28a745;
   font-weight: 600;
   margin: 0 1rem;
 }
 
 .add-content-form,
 .add-alternative-form,
 .add-question-form {
   display: flex;
   gap: 0.5rem;
   margin-top: 1rem;
 }
 
 .tags-container {
   border: 1px solid #dee2e6;
   border-radius: 8px;
   padding: 1rem;
 }
 
 .tag-group {
   margin-bottom: 1rem;
 }
 
 .tag-group legend {
   font-weight: 600;
   color: #495057;
 }
 
 .tag-options {
   display: flex;
   flex-wrap: wrap;
   gap: 0.5rem;
 }
 
 .tag-option {
   display: flex;
   align-items: center;
 }
 
 .tag-option input[type="checkbox"] {
   margin-right: 0.25rem;
 }
 
 .navigation-buttons {
   display: flex;
   justify-content: space-between;
   margin-top: 2rem;
 }
 
 .no-data-message {
   color: #6c757d;
   font-style: italic;
 }