/* Import Galano Grotesque font */
@import url('https://fonts.googleapis.com/css2?family=Galano+Grotesque:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Color Palette */
:root {
  /* Primary Colors */
  --primary-light: #7EDDF7;    /* R126 G221 B247 - Light Blue */
  --primary-medium: #39A8F7;   /* R57 G168 B247 - Medium Blue */
  --primary-bright: #70CDFF;   /* R112 G205 B255 - Bright Blue */
  --primary-dark: #0C75D1;     /* R12 G117 B209 - Dark Blue */
  --primary-accent: #00BAED;   /* R0 G186 B237 - Accent Blue */
  --primary-vibrant: #46A2F2;  /* R70 G162 B242 - Vibrant Blue */
  
  /* Secondary Colors */
  --secondary-teal: #65EBDC;   /* R101 G235 B220 - Teal */
  --secondary-purple: #C474F2; /* R196 G116 B242 - Purple */
  --secondary-navy: #042C75;   /* R4 G44 B117 - Navy */
  --secondary-gray: #808080;   /* R128 G128 B128 - Gray */
  --secondary-pink: #FD659B;   /* R253 G101 B155 - Pink */
  --secondary-orange: #FEB26F; /* R254 G178 B111 - Orange */
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #E9ECEF;
  --dark-gray: #495057;
  --black: #000000;
  
  /* Additional semantic colors derived from your palette */
  --text-primary: var(--secondary-navy);
  --text-secondary: var(--secondary-gray);
  --text-muted: #6C7B7F;
  --border-light: var(--medium-gray);
  --border-medium: var(--primary-light);
  --success: var(--secondary-teal);
  --danger: var(--secondary-pink);
  --warning: var(--secondary-orange);
  --info: var(--primary-vibrant);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Galano Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  padding: 20px;
  min-height: 100vh;
}

/* .container {
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(12, 117, 209, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
} */

.header {
  background: transparent;
  color: #337ab7;
  padding: 20px 0;
  margin-bottom: 0;
  box-shadow: none;
  border-radius: 0;
  text-align: left;
  border-bottom: 1px solid #eeeeee;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header h1 {
  color: #337ab7;
  font-size: 2.5em;
  font-weight: 700;
  margin: 0;
}

.header p {
  display: none;
}

.table-container {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

thead {
  background: #f5f5f5;
  color: var(--text-primary);
}

th {
  padding: 16px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9em;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

th:last-child {
  border-right: none;
}

tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid #e0e0e0;
}

tbody tr:hover {
  background: #f9f9f9;
}

tbody tr:last-child {
  border-bottom: none;
}

td {
  padding: 16px 15px;
  vertical-align: middle;
  border-right: 1px solid #e0e0e0;
  color: var(--text-primary);
}

td:last-child {
  border-right: none;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e3f2fd;
  border: 1px solid #337ab7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #337ab7;
  font-weight: 600;
  font-size: 0.9em;
  box-shadow: none;
}

.user-details h4 {
  color: var(--text-primary);
  margin-bottom: 5px;
  font-weight: 600;
}

.user-details p {
  color: var(--text-secondary);
  font-size: 0.9em;
  margin-bottom: 2px;
}

.user-forward-email {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 2px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-forward-email i {
  color: var(--success);
  font-size: 0.8rem;
}

.status-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge {
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.8em;
  font-weight: 500;
  text-align: center;
  min-width: 60px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.badge i {
  font-size: 0.8em;
}

.badge.admin {
  background: #f3e5f5;
  color: #7b1fa2;
  border: 1px solid #e1bee7;
}

.badge.user {
  background: #e3f2fd;
  color: #1976d2;
  border: 1px solid #bbdefb;
}

.badge.active {
  background: #e8f5e8;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.badge.inactive {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.action-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}


.btn-move {
  background: #337ab7;
  color: var(--white);
}

.btn-move:hover {
  background: #286090;
}

.btn-move:disabled {
  background: #e0e0e0;
  color: #808080;
  cursor: not-allowed;
}

.btn-delete {
  background: #d9534f;
  color: var(--white);
}

.btn-delete:hover {
  background: #c9302c;
}

.btn-delete:disabled {
  background: #e0e0e0;
  color: #808080;
  cursor: not-allowed;
}

.btn-forward {
  background: #337ab7;
  color: var(--white);
}

.btn-forward:hover {
  background: #286090;
}

.btn-forward:disabled {
  background: #e0e0e0;
  color: #808080;
  cursor: not-allowed;
}

.btn-edit {
  background: #337ab7;
  color: var(--white);
}

.btn-edit:hover {
  background: #286090;
}

.btn-edit:disabled {
  background: #e0e0e0;
  color: #808080;
  cursor: not-allowed;
}

.icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Actions Bar */
.actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-light);
}

.stats {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  color: var(--text-primary);
  border-radius: 8px;
  min-width: 100px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.stat-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.stat-item i {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #337ab7;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn.small {
  padding: 8px 12px;
  font-size: 0.85em;
  font-weight: 500;
  min-width: 80px;
}

.btn-primary {
  background: #337ab7;
  color: var(--white);
  box-shadow: 0 2px 4px rgba(51, 122, 183, 0.2);
}

.btn-primary:hover {
  background: #286090;
  box-shadow: 0 2px 6px rgba(51, 122, 183, 0.3);
}

.btn:hover:not(:disabled) {
  transform: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background: #6c757d;
  color: var(--white);
  box-shadow: 0 2px 4px rgba(108, 117, 125, 0.2);
}

.btn-secondary:hover {
  background: #5a6268;
  transform: none;
  box-shadow: 0 2px 6px rgba(108, 117, 125, 0.3);
}

.btn-edit {
  background: #337ab7;
  color: var(--white);
}

.btn-edit:hover {
  background: #286090;
  transform: none;
  box-shadow: 0 2px 4px rgba(51, 122, 183, 0.3);
}

.btn-delete {
  background: #d9534f;
  color: var(--white);
}

.btn-delete:hover {
  background: #c9302c;
  transform: none;
  box-shadow: 0 2px 4px rgba(217, 83, 79, 0.3);
}

/* Action Tags for Allowed Actions */
.action-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.action-tag {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
  text-align: center;
  min-width: 70px;
  border: none;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  transition: all 0.3s ease;
}

.action-tag.enabled {
  background: #337ab7;
  color: var(--white);
  box-shadow: 0 2px 4px rgba(51, 122, 183, 0.2);
}

.action-tag.disabled {
  background: #e0e0e0;
  color: #808080;
  opacity: 0.7;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-tag .icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Icon-only button styles */
.btn.icon-only {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  min-width: auto;
  justify-content: center;
  align-items: center;
}

.btn.icon-only .icon {
  width: 18px;
  height: 18px;
}

/* Form Styles */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.form-header {
  text-align: left;
  margin-bottom: 30px;
}

.form-header h2 {
  color: #337ab7;
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 1em;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95em;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text-primary);
}

.form-input:focus {
  outline: none;
  border-color: #337ab7;
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(51, 122, 183, 0.1);
}

.form-input.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(253, 101, 155, 0.1);
}

.form-input.success {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(101, 235, 220, 0.1);
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23808080' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  color: var(--text-primary);
}

.form-select:focus {
  outline: none;
  border-color: #337ab7;
  background-color: var(--white);
  box-shadow: 0 0 0 2px rgba(51, 122, 183, 0.1);
}

.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.form-checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-vibrant);
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.9em;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text-primary);
}

.form-textarea:focus {
  outline: none;
  border-color: #337ab7;
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(51, 122, 183, 0.1);
}

.form-file {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  background: var(--white);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-file:focus {
  outline: none;
  border-color: #337ab7;
  box-shadow: 0 0 0 2px rgba(51, 122, 183, 0.1);
}

.form-file input[type="file"] {
  display: none;
}

.form-file-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-secondary);
}

.main-content{
  margin-top: 20px;
}

.form-file-icon {
  color: #337ab7;
}

.form-error {
  color: var(--danger);
  font-size: 0.85em;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-error i {
  font-size: 0.8em;
}

.form-success {
  color: var(--success);
  font-size: 0.85em;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-success i {
  font-size: 0.8em;
}

.form-help {
  color: var(--text-muted);
  font-size: 0.85em;
  margin-top: 5px;
  font-style: italic;
}

/* Required Field Indicator */
.required {
  color: var(--danger);
  font-weight: 600;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid var(--border-light);
}

.form-actions .btn {
  min-width: 120px;
}

.form-actions .btn-secondary {
  background: #6c757d;
  color: var(--white);
}

.form-actions .btn-secondary:hover {
  background: #5a6268;
  color: var(--white);
}

/* Logo and Header Styling */
.logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 0;
  box-shadow: none;
}

.header-text h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0;
  color: #337ab7;
  text-shadow: none;
}

.header-text p {
  display: none;
}

/* Tab Navigation */
.tab-container {
  width: 100%;
}

.tab-navigation {
  display: flex;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #eeeeee;
}

.tab-button {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: transparent;
  color: #555555;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Galano Grotesque', sans-serif;
  text-transform: capitalize;
  position: relative;
}

.tab-button:hover {
  background: transparent;
  color: #555555;
  text-decoration: none;
  transform: none;
}

.tab-button.active {
  background: transparent;
  color: #337ab7;
  font-weight: 700;
  box-shadow: none;
  transform: none;
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #337ab7;
}

.tab-button i {
  font-size: 1.2rem;
}

/* Tab Content */
.tab-content {
  position: relative;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.tab-pane.active {
  display: block;
}

/* Company and Domain Info Styling */
.company-domain-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.info-item i {
  color: var(--info);
  width: 16px;
}

.company-info, .domain-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.company-avatar, .domain-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e3f2fd;
  border: 1px solid #337ab7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #337ab7;
  font-size: 0.9rem;
  font-weight: 600;
}

.company-details, .domain-details {
  flex: 1;
}

.company-name, .domain-name {
  margin: 0 0 5px 0;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.company-industry, .domain-type {
  margin: 0 0 5px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.company-date, .domain-date {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Autocomplete Styling */
.autocomplete-container {
  position: relative;
}

.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(12, 117, 209, 0.15);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.dropdown-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.2s ease;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(126, 221, 247, 0.1), rgba(101, 235, 220, 0.1));
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item strong {
  color: var(--text-primary);
  font-size: 0.95rem;
}

.dropdown-item small {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.no-results {
  padding: 16px;
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
}

.selected-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(101, 235, 220, 0.1), rgba(126, 221, 247, 0.1));
  border: 1px solid var(--success);
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: 8px;
}

.selected-item span {
  color: var(--text-primary);
  font-weight: 500;
}

.remove-item {
  background: var(--danger);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.remove-item:hover {
  background: var(--secondary-orange);
}

/* Checkbox Group */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  background: var(--white);
  transition: all 0.3s ease;
}

.checkbox-item:hover {
  border-color: var(--primary-vibrant);
  background: linear-gradient(135deg, rgba(126, 221, 247, 0.05), rgba(101, 235, 220, 0.05));
}

.checkbox-item input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-vibrant);
  border-radius: 4px;
  margin-right: 12px;
  position: relative;
  background: var(--white);
  transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-vibrant);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
}

.checkbox-item span {
  font-weight: 500;
  color: var(--text-primary);
}

.checkbox-item i {
  margin-left: auto;
  color: var(--info);
  font-size: 1.1rem;
}

/* Loading animation */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

tbody tr {
  animation: fadeInUp 0.5s ease forwards;
}

tbody tr:nth-child(1) { animation-delay: 0.1s; }
tbody tr:nth-child(2) { animation-delay: 0.2s; }
tbody tr:nth-child(3) { animation-delay: 0.3s; }
tbody tr:nth-child(4) { animation-delay: 0.4s; }
tbody tr:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
      padding: 20px;
  }
  
  th, td {
      padding: 15px 10px;
  }
}

@media (max-width: 768px) {
  .header h1 {
      font-size: 2em;
  }

  .user-info {
      flex-direction: column;
      text-align: center;
      gap: 10px;
  }

  .user-avatar {
      width: 40px;
      height: 40px;
      font-size: 1em;
  }

  .action-buttons {
      flex-direction: column;
      gap: 5px;
  }

  .action-tags {
      flex-direction: column;
      gap: 5px;
  }

  .action-tag {
      font-size: 0.75em;
      padding: 5px 10px;
      min-width: 60px;
  }

  .btn {
      font-size: 0.8em;
      padding: 6px 8px;
      min-width: 70px;
  }

  .btn.icon-only {
      width: 35px;
      height: 35px;
  }

  .btn.icon-only .icon {
      width: 16px;
      height: 16px;
  }

  th, td {
      padding: 12px 8px;
  }

  .status-badges {
      align-items: center;
  }

  .tab-navigation {
      flex-direction: column;
      gap: 5px;
  }
  
  .tab-button {
      padding: 12px 16px;
      font-size: 0.9rem;
  }
  
  .logo {
      width: 48px;
      height: 48px;
  }
  
  .header-text h1 {
      font-size: 1.5rem;
  }
  
  .company-avatar, .domain-avatar {
      width: 40px;
      height: 40px;
      font-size: 1rem;
  }

  .form-container {
      padding: 25px;
      margin: 10px;
  }

  .form-header h2 {
      font-size: 1.5em;
  }

  .form-actions {
      flex-direction: column;
  }

  .form-actions .btn {
      width: 100%;
      min-width: auto;
  }

  .form-checkbox-group {
      flex-direction: column;
      gap: 10px;
  }
}

@media (max-width: 480px) {
  body {
      padding: 10px;
  }

  .container {
      padding: 15px;
  }

  .header h1 {
      font-size: 1.5em;
  }

  table {
      font-size: 0.9em;
  }

  .user-details h4 {
      font-size: 0.9em;
  }

  .user-details p {
      font-size: 0.8em;
  }
}