/* 관리 시스템 CSS */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  --dark: #1f2937;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --sidebar-width: 260px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--gray-100);
  color: var(--dark);
  line-height: 1.5;
}

/* 로그인 페이지 */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 20px;
}

.login-box {
  background: white;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.login-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.login-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.login-tab {
  flex: 1;
  padding: 12px;
  border: 2px solid var(--gray-200);
  background: white;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.login-tab:hover {
  border-color: var(--primary);
}

.login-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.login-help {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.login-help a {
  color: var(--primary);
  text-decoration: none;
}

/* 폼 요소 */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

/* 버튼 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-success {
  background: var(--success);
  color: white;
}

.btn-success:hover {
  background: #059669;
}

.btn-warning {
  background: var(--warning);
  color: white;
}

.btn-warning:hover {
  background: #d97706;
}

.btn-danger {
  background: var(--danger);
  color: white;
}

.btn-danger:hover {
  background: #dc2626;
}

.btn-info {
  background: var(--info);
  color: white;
}

.btn-secondary {
  background: var(--gray-200);
  color: var(--gray-700);
}

.btn-secondary:hover {
  background: var(--gray-300);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
}

.btn-outline:hover {
  border-color: var(--gray-500);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

/* 대시보드 레이아웃 */
.dashboard {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: var(--sidebar-width);
  background: var(--dark);
  color: white;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
}

.sidebar-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h2 {
  font-size: 20px;
  font-weight: 700;
}

.sidebar-header p {
  font-size: 14px;
  color: var(--gray-300);
  margin-top: 4px;
}

.sidebar-menu {
  list-style: none;
  padding: 16px 0;
  flex: 1;
}

.sidebar-menu li a {
  display: block;
  padding: 12px 24px;
  color: var(--gray-300);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.sidebar-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.sidebar-menu li a.active {
  background: var(--primary);
  color: white;
}

.sidebar-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-content {
  flex: 1;
  margin-left: var(--sidebar-width);
  padding: 32px;
}

/* 페이지 헤더 */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.page-header h1 {
  font-size: 24px;
  font-weight: 700;
}

/* 통계 카드 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-card.warning {
  border-left: 4px solid var(--warning);
}

.stat-card.danger {
  border-left: 4px solid var(--danger);
}

.stat-card.clickable {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card.clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-card.clickable:active {
  transform: translateY(0);
}

.stat-icon {
  font-size: 32px;
}

.stat-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
}

.stat-info p {
  font-size: 14px;
  color: var(--gray-500);
}

/* 테이블 */
.table-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.data-table th {
  background: var(--gray-100);
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table td {
  font-size: 14px;
}

.data-table tbody tr:hover {
  background: var(--gray-100);
}

.action-cell {
  display: flex;
  gap: 8px;
}

/* 배지 */
.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

.badge-success {
  background: #d1fae5;
  color: #065f46;
}

.badge-warning {
  background: #fef3c7;
  color: #92400e;
}

.badge-danger {
  background: #fee2e2;
  color: #991b1b;
}

.badge-info {
  background: #dbeafe;
  color: #1e40af;
}

.badge-secondary {
  background: var(--gray-200);
  color: var(--gray-700);
}

.badge-primary {
  background: #dbeafe;
  color: #1d4ed8;
}

.badge-dark {
  background: var(--gray-700);
  color: white;
}

/* 필터 */
.filters {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filters .form-control {
  width: auto;
  min-width: 150px;
}

/* 모달 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal {
  background: white;
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-lg {
  max-width: 800px;
}

.modal h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.modal h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 12px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* 설정 섹션 */
.settings-section {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.settings-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.help-text {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.form-help {
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 16px;
}

.inline-form {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.inline-form .form-control {
  flex: 1;
}

/* 진행 바 */
.progress-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  margin-top: 6px;
  overflow: hidden;
}

.progress-bar div {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.3s;
}

/* 라이선스 요약 */
.license-summary {
  background: white;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.license-bar {
  height: 24px;
  background: var(--gray-200);
  border-radius: 12px;
  margin: 16px 0;
  overflow: hidden;
}

.license-used {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--info));
  border-radius: 12px;
  transition: width 0.3s;
}

/* 빠른 작업 */
.quick-actions {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.quick-actions h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* 유틸리티 */
.loading {
  text-align: center;
  padding: 40px;
  color: var(--gray-500);
}

.empty-state {
  text-align: center;
  padding: 40px;
  color: var(--gray-500);
}

.text-danger {
  color: var(--danger);
}

.text-success {
  color: var(--success);
}

code {
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 13px;
}

.company-info {
  background: var(--gray-100);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.company-info p {
  margin: 4px 0;
  font-size: 14px;
}

.license-info {
  margin-bottom: 20px;
  padding: 12px 16px;
  background: #dbeafe;
  border-radius: 8px;
  color: #1e40af;
}

/* 모바일 카드 리스트 */
.mobile-card-list {
  display: none;
}

.mobile-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.mobile-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.mobile-card-email {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 2px;
}

.mobile-card-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.mobile-card-info span {
  display: block;
}

.mobile-card-info strong {
  color: var(--gray-500);
  font-weight: 500;
  font-size: 11px;
  display: block;
  margin-bottom: 2px;
}

.mobile-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mobile-card-actions .btn {
  flex: 1;
  min-width: 80px;
}

/* 모바일 헤더 */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--dark);
  color: white;
  z-index: 200;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
}

.mobile-header h1 {
  font-size: 18px;
  font-weight: 600;
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* 모바일 하단 네비게이션 */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: white;
  border-top: 1px solid var(--gray-200);
  z-index: 200;
}

.mobile-nav-items {
  display: flex;
  height: 100%;
}

.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--gray-500);
  font-size: 11px;
  transition: color 0.2s;
}

.mobile-nav-item.active {
  color: var(--primary);
}

.mobile-nav-item .nav-icon {
  font-size: 22px;
  margin-bottom: 4px;
}

/* 빠른 승인 카드 (모바일 특화) */
.quick-approve-section {
  background: linear-gradient(135deg, var(--warning), #d97706);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  color: white;
}

.quick-approve-section h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-approve-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quick-approve-item:last-child {
  margin-bottom: 0;
}

.quick-approve-info {
  flex: 1;
}

.quick-approve-name {
  font-weight: 600;
  font-size: 14px;
}

.quick-approve-email {
  font-size: 12px;
  opacity: 0.8;
}

.quick-approve-btn {
  background: white;
  color: var(--warning);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

/* 반응형 */
@media (max-width: 768px) {
  .mobile-header {
    display: flex;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .mobile-card-list {
    display: block;
  }
  
  .table-container {
    display: none;
  }
  
  .sidebar {
    position: fixed;
    transform: translateX(-100%);
    z-index: 300;
    transition: transform 0.3s ease;
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 250;
  }
  
  .sidebar-overlay.open {
    display: block;
  }
  
  .main-content {
    margin-left: 0;
    padding: 72px 16px 80px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .stat-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .stat-icon {
    font-size: 28px;
  }
  
  .stat-info h3 {
    font-size: 24px;
  }
  
  .stat-info p {
    font-size: 12px;
  }
  
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .page-header h1 {
    font-size: 20px;
  }
  
  .filters {
    flex-direction: column;
  }
  
  .filters .form-control {
    width: 100%;
  }
  
  .modal {
    padding: 24px;
    margin: 16px;
    max-height: calc(100vh - 32px);
  }
  
  .modal-lg {
    max-width: 100%;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .modal-actions .btn {
    width: 100%;
  }
  
  .quick-actions {
    padding: 16px;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .action-buttons .btn {
    width: 100%;
  }
  
  .settings-section {
    padding: 16px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .inline-form {
    flex-direction: column;
  }
  
  .login-box {
    padding: 24px;
  }
}

/* 애니메이션 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* 기간 선택 버튼 그룹 */
.period-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.period-buttons .btn {
  flex: 1;
  min-width: 70px;
}

.period-buttons .btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* 날짜 입력 */
input[type="date"] {
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  background: var(--gray-200);
}

/* 체험판 카드 */
.trial-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trial-card {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid var(--gray-200);
}

.trial-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.trial-card-info {
  flex: 1;
}

.trial-card-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.trial-card-email {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 2px;
}

.trial-card-details {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.trial-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trial-card-actions .btn {
  flex: 1;
  min-width: 80px;
}

@media (max-width: 768px) {
  .trial-card-details {
    flex-direction: column;
    gap: 4px;
  }
  
  .trial-card-actions {
    flex-direction: column;
  }
  
  .trial-card-actions .btn {
    width: 100%;
  }
}

/* 프로필 페이지 */
.profile-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.profile-row:last-child {
  border-bottom: none;
}

.profile-label {
  color: var(--gray-500);
  font-weight: 500;
}

.profile-value {
  font-weight: 600;
}

.memo-text {
  background: var(--gray-100);
  padding: 16px;
  border-radius: 8px;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.6;
}

/* 탭 스타일 */
.tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tab-btn {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn:hover {
  background: var(--gray-100);
}

.tab-btn.active {
  background: var(--primary);
  color: white;
}

.tab-content {
  animation: fadeIn 0.3s;
}

/* 이용 내역 */
.history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--gray-100);
  border-radius: 10px;
}

.history-info {
  flex: 1;
}

.history-action {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.history-detail {
  font-size: 13px;
  color: var(--gray-500);
}

.history-sub {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
}

.history-meta {
  text-align: right;
}

.history-date {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 6px;
}

/* 빠른 기간 선택 버튼 */
.quick-period-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.quick-period-buttons .btn {
  flex: 1;
  min-width: 60px;
}

/* 라이선스 정보 */
.license-info {
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-radius: 8px;
  font-size: 14px;
}

/* 토스트 애니메이션 */
@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* 모바일에서 탭 */
@media (max-width: 768px) {
  .tab-btn {
    padding: 12px 10px;
    font-size: 13px;
  }
  
  .history-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .history-meta {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

/* 승인 대기 업체 섹션 */
.pending-companies-section {
  margin-bottom: 24px;
}

.pending-companies-section h2 {
  font-size: 18px;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #fef3c7;
  border-radius: 8px;
}

.pending-company-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #fde68a;
}

.pending-company-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.pending-company-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.pending-company-info {
  margin-bottom: 16px;
}

.pending-company-info .info-row {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}

.pending-company-info .info-row:last-child {
  border-bottom: none;
}

.pending-company-info .info-label {
  width: 80px;
  color: var(--gray-500);
  font-size: 14px;
  flex-shrink: 0;
}

.pending-company-info .info-value {
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
}

.pending-company-actions {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.pending-company-actions .btn {
  flex: 1;
}

.btn-outline {
  background: transparent;
  border: 1px solid currentColor;
}

.btn-outline.btn-danger {
  color: var(--danger);
}

.btn-outline.btn-danger:hover {
  background: var(--danger);
  color: white;
}

@media (max-width: 768px) {
  .pending-company-info .info-row {
    flex-direction: column;
    gap: 4px;
  }
  
  .pending-company-info .info-label {
    width: auto;
  }
  
  .pending-company-actions {
    flex-direction: column;
  }
}
