body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: white !important;
}
a {
  font-size: inherit !important;
}
.skip-to-content{
    display:none !important
}
.static-top.navbar-dark{
    background-color: transparent;
}
.table-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow-x: auto;
    padding: 20px;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1200px;
}

.custom-table th {
    background-color: rgb(0 111 82);
    color: white;
    padding: 15px 10px;
    text-align: center;
    font-weight: bold;
    border: 1px solid rgb(0, 89, 65);
    word-wrap: break-word;
    max-width: 120px;
    vertical-align: middle;
}

.custom-table th:first-child {
    background-color: rgb(0 111 82);
    min-width: 100px;
    max-width: 100px;
}

.custom-table td {
    padding: 15px 10px;
    text-align: center;
    border: 1px solid #ddd;
    vertical-align: middle;
}

.custom-table td:first-child {
    background-color: #ecf0f1;
    font-weight: bold;
    color: rgb(0 111 82);
}

.cell-with-data {
    background-color: rgb(186 235 200) !important;
    border-color: #c3e6cb;
}

.cell-empty {
    background-color: rgb(238 238 238) !important;
    border-color: rgb(220 220 220);
}

.action-icon {
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 4px;
}

.edit-icon {
    color: rgb(2 158 88);
}

.edit-icon:hover {
    color: rgb(0 111 82);
    background-color: rgba(40, 167, 69, 0.1);
}

.add-icon {
    color: rgb(2 158 88);
}

.add-icon:hover {
    color: rgb(0 111 82);
    background-color: rgba(40, 167, 69, 0.1);
}

.table-title {
    color: rgb(0 111 82);
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.header-text {
    font-size: 12px;
    line-height: 1.3;
    word-break: break-word;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .table-container {
        padding: 10px;
    }
    
    .custom-table th,
    .custom-table td {
        padding: 8px 5px;
        font-size: 12px;
    }
    
    .action-icon {
        font-size: 14px;
    }
}




/* Import Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
}*/
.dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent 
}
.nav-link .dropdown-toggle .show{
    background-color: transparent;
}
@media (max-width: 1199px) {
    #navbar .nav-link {
        color: #7bdcb5;
        padding: 0.5rem 0;
        background-color: transparent;
    }
}
@media (max-width> 1199px) {
    #navbar .nav-link {
        color: #7bdcb5;
        padding: 0.5rem 0;
        background-color: transparent;
    }
}
.app-container {
  min-height: 100vh;
  padding: 20px;
}

.app-inner-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-direction: column;
}

.company-banner {
  background: linear-gradient(135deg, rgb(0 111 82) 0%, rgb(2 158 88) 100%);
  color: white;
  padding: 40px;
  text-align: center;
}

.company-name {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
}

.section {
  margin: 30px;
  padding-left: 20px;
  border-left: 3px solid rgb(0 111 82);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add-btn {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-btn:hover:not(:disabled) {
  background: #45a049;
}

.add-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.delete-btn {
  background: #f44336;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: background-color 0.2s;
}

.delete-btn:hover:not(:disabled) {
  background: #da190b;
}

.delete-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.user-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin-bottom: 10px;
  background: rgb(238 238 238);
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}

.user-info {
  flex-grow: 1;
}

.display-name {
  font-weight: 500;
  color: #333;
  font-size: 1rem;
  margin-bottom: 2px;
}

.email {
  color: #666;
  font-size: 0.9rem;
}

.empty-state {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 20px;
  font-size: 0.95rem;
}

.modal {
  display: block;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.2s;
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 30px;
  border-radius: 12px;
  width: min(90%, 400px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s;
}

.modal-header {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 2px solid rgb(238 238 238);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: rgb(0 111 82);
}

.form-input:disabled {
  background-color: #f5f5f5;
  color: #999;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 25px;
}

.modal-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cancel-btn {
  background: #6c757d;
  color: white;
}

.cancel-btn:hover:not(:disabled) {
  background: #5a6268;
}

.ok-btn {
  background: rgb(2 158 88);;
  color: white;
}

.ok-btn:hover:not(:disabled) {
  background: rgb(0 111 82);
}

.loading {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s ease-in-out infinite;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .app-container {
    padding: 10px;
  }

  .company-name {
    font-size: 2rem;
  }

  .section {
    margin: 20px 15px;
    padding-left: 15px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .add-btn {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .user-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .delete-btn {
    align-self: flex-end;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-btn {
    width: 100%;
    justify-content: center;
  }

  .company-name {
    font-size: 1.5rem;
  }
}


footer .footer-bottom {
    background-color: rgb(2 158 88);
}