/* Default colors variables */
:root {
  --primary-color: #84cc16; /* lime-500 */
  --secondary-color: #f7fee7; /* lime-50 */
  --text-color: #365314; /* lime-800 */
  --background-color: #f7fee7; /* lime-50 */
  --border-color: #d9f99d; /* lime-200 */
  --error-color: #dc2626; /* red-600 */
  --success-color: #65a30d; /* lime-600 */
  --warning-color: #f59e0b; /* amber-500 */
  --info-color: #84cc16; /* lime-500 */
  --light-text-color: #65a30d; /* lime-600 */
  --dark-text-color: #1a2e05; /* lime-950 */
  --card-bg-color: #ffffff; /* white */
  --card-shadow: rgba(132, 204, 22, 0.1); /* lime-500 with opacity */
  --card-border-radius: 12px;
  --input-bg-color: #ffffff; /* white */
  --input-border-color: #d9f99d; /* lime-200 */
  --input-focus-border-color: #84cc16; /* lime-500 */
  --button-bg-color: #70ab15; /* lime-500 */
  --button-hover-bg-color: #65a30d; /* lime-600 */
  --button-disabled-bg-color: #bef264; /* lime-300 */
  --button-text-color: #ffffff; /* white */
  --button-secondary-bg-color: #ebebeb; /* lime-100 */
  --button-secondary-text-color: #424242; /* lime-800 */
  --button-secondary-border-color: #ababab; /* lime-200 */
  --badge-success-bg: #ecfccb; /* lime-100 */
  --badge-success-text: #365314; /* lime-800 */
  --badge-warning-bg: #fef3c7; /* amber-100 */
  --badge-warning-text: #92400e; /* amber-800 */
  --badge-danger-bg: #fecaca; /* red-200 */
  --badge-danger-text: #991b1b; /* red-800 */
  --badge-secondary-bg: #f4f4f5; /* zinc-100 */
  --badge-secondary-text: #3f3f46; /* zinc-700 */
  --badge-primary-bg: #ecfccb; /* lime-100 */
  --badge-primary-text: #365314; /* lime-800 */
  --badge-blue-bg: #dbeafe; /* blue-100 */
  --badge-blue-text: #1d4ed8; /* blue-700 */
  --badge-green-bg: #dcfce7; /* green-100 */
  --badge-green-text: #166534; /* green-800 */
  --badge-purple-bg: #e9d5ff; /* purple-200 */
  --badge-purple-text: #7c3aed; /* purple-600 */
  --badge-orange-bg: #fed7aa; /* orange-200 */
  --badge-orange-text: #c2410c; /* orange-700 */
  --badge-indigo-bg: #e0e7ff; /* indigo-200 */
  --badge-indigo-text: #4338ca; /* indigo-700 */
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

/* Login Page Styles */
.login-page {
  background: linear-gradient(135deg, #EEEEEE 0%, #F2F2F2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-container {
  width: 100%;
  max-width: 400px;
}

.login-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.login-header {
  text-align: center;
  padding: 40px 30px 20px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.login-header h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

.login-header p {
  color: #6b7280;
  font-size: 14px;
}

.login-footer p {
  color: #6b7280;
  font-size: 14px;
}

.login-form {
  padding: 0 30px 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #374151;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s;
}

.input-group input:focus {
  outline: none;
  border-color: var(--input-focus-border-color);
}

.input-icon {
  position: absolute;
  left: 14px;
  color: #9ca3af;
  z-index: 1;
}

.toggle-password {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #9ca3af;
}

.btn-primary {
  width: 100%;
  background: var(--button-bg-color);
  color: var(--button-text-color);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--button-hover-bg-color);
}

.btn-primary:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.btn-secondary {
  background: var(--button-secondary-bg-color);
  color: var(--button-secondary-text-color);
  border: 1px solid var(--button-secondary-border-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #e5e7eb;
}

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

.error-message {
  background: #fef2f2;
  color: #dc2626;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  border: 1px solid #fecaca;
}

.forgot-password {
  color: #3b82f6;
  text-decoration: none;
  font-size: 14px;
}

.forgot-password:hover {
  text-decoration: underline;
}

.login-footer {
  text-align: center;
  padding: 20px 30px 40px;
}

/* Dashboard Layout */
.dashboard-page {
  background: #f9fafb;
}

.dashboard-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 256px;
  background: white;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.sidebar-header .logo {
  justify-content: flex-start;
  margin-bottom: 0;
}

.sidebar-header .logo-icon {
  width: 32px;
  height: 32px;
  font-size: 16px;
}

.sidebar-header span {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

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

.sidebar-menu li {
  margin-bottom: 8px;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #6b7280;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 500;
}

.sidebar-menu a:hover {
  background: #f3f4f6;
  color: #374151;
}

.sidebar-menu a.active {
  background: #dbeafe;
  color: #1d4ed8;
}

.sidebar-menu svg {
  width: 20px;
  margin-right: 1em;
  color: var(--button-bg-color);
}

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid #e5e7eb;
}

.btn-logout {
  width: 100%;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-logout:hover {
  background: #fee2e2;
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: 256px;
  display: flex;
  flex-direction: column;
}

.header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
  background: #f3f4f6;
}

.header h1 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
}

.user-menu {
  position: relative;
}

.user-avatar {
  width: 32px;
  height: 32px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.user-avatar:hover {
  background: #2563eb;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 8px;
  display: none;
  z-index: 1000;
}

.user-dropdown.show {
  display: block;
}

.user-info p {
  font-weight: 600;
  margin-bottom: 4px;
}

.user-info small {
  color: #6b7280;
  font-size: 12px;
}

.user-dropdown hr {
  margin: 8px 0;
  border: none;
  border-top: 1px solid #e5e7eb;
}

.user-dropdown button {
  width: 100%;
  background: none;
  border: none;
  padding: 8px 12px;
  text-align: left;
  cursor: pointer;
  border-radius: 4px;
  color: #dc2626;
  font-weight: 500;
}

.user-dropdown button:hover {
  background: #fef2f2;
}

.content {
  padding: 24px;
  flex: 1;
}

/* Page Header */
.page-header {
  margin-bottom: 24px;
}

.page-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.page-header p {
  color: #6b7280;
}

.welcome-section {
  margin-bottom: 32px;
}

.welcome-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.welcome-section p {
  color: #6b7280;
  font-size: 16px;
}

/* Cards */
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  overflow: hidden;
}

.card-header {
  padding: 24px 24px 0;
}

.card-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.card-header p {
  color: #6b7280;
  font-size: 14px;
}

.card-content {
  padding: 24px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

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

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.stat-header span:first-child {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

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

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.stat-description {
  font-size: 12px;
  color: #6b7280;
}

/* File List */
.file-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.file-item:hover {
  background: #f9fafb;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.file-name {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.file-meta {
  font-size: 14px;
  color: #6b7280;
}

.file-date {
  font-size: 14px;
  color: #6b7280;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.badge-warning {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.badge-danger {
  background: #fecaca;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.badge-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}

.badge-primary {
  background: #dbeafe;
  color: #1d4ed8;
  border: 1px solid #93c5fd;
}

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

.badge-green {
  background: #dcfce7;
  color: #166534;
}

.badge-purple {
  background: #e9d5ff;
  color: #7c3aed;
}

.badge-orange {
  background: #fed7aa;
  color: #c2410c;
}

.badge-indigo {
  background: #e0e7ff;
  color: #4338ca;
}

/* Boletos/Repasses Specific */
.boletos-list,
.repasses-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.boleto-card,
.repasse-card {
  margin-bottom: 0;
}

.boleto-info,
.repasse-info {
  flex: 1;
}

.boleto-info h3,
.repasse-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.boleto-info p,
.repasse-info p {
  font-size: 14px;
  color: #6b7280;
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.boleto-details,
.repasse-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-icon {
  font-size: 16px;
}

.detail-item div small {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 2px;
}

.detail-item div strong {
  font-weight: 600;
  color: #1f2937;
}

.boleto-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.boleto-actions a {
  text-decoration: none;
  text-align: center;
}

.text-success {
  color: #059669 !important;
}

/* Summary Card */
.summary-card .card-header h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}

.summary-item small {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.summary-item strong {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

/* Arquivos Specific */
.search-card {
  margin-bottom: 24px;
}

.search-filters {
  display: flex;
  gap: 16px;
  align-items: end;
}

.search-group {
  flex: 1;
}

.search-filters select {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  min-width: 200px;
}

.search-filters select:focus {
  outline: none;
  border-color: #3b82f6;
}

.arquivos-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.arquivo-card .card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.arquivo-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.arquivo-icon {
  font-size: 32px;
  min-width: 32px;
}

.arquivo-details h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.arquivo-details p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
}

.arquivo-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
}

.no-results {
  text-align: center;
  padding: 40px 24px;
}

.no-results-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.no-results h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.no-results p {
  color: #6b7280;
}

/* Tabs */
.tabs {
  margin-bottom: 24px;
}

.tab-buttons {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
  overflow-x: auto;
}

.tab-button {
  background: none;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 500;
  color: #6b7280;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.tab-button:hover {
  color: #374151;
}

.tab-button.active {
  color: #3b82f6;
  border-bottom-color: #3b82f6;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Atendimento Specific */
.tickets-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ticket-item {
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.ticket-item:hover {
  background: #f9fafb;
}

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

.ticket-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.ticket-info p {
  font-size: 14px;
  color: #6b7280;
}

.ticket-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #6b7280;
  flex-wrap: wrap;
}

.ticket-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ticket-form .form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #374151;
}

.ticket-form input,
.ticket-form select,
.ticket-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.ticket-form input:focus,
.ticket-form select:focus,
.ticket-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.ticket-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.contact-card .card-content {
  text-align: center;
  padding: 32px 24px;
}

.contact-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.contact-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: #374151;
  margin-bottom: 4px;
}

.contact-card small {
  font-size: 12px;
  color: #6b7280;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.faq-item p {
  color: #6b7280;
  line-height: 1.6;
  margin-left: 24px;
}

/* Security Specific */
.security-overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.security-item .card-content {
  padding: 20px 24px;
}

.security-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.security-icon {
  font-size: 32px;
  min-width: 32px;
}

.security-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.security-info p {
  font-size: 14px;
  color: #6b7280;
}

.text-success {
  color: #059669;
}

.text-warning {
  color: #d97706;
}

.text-info {
  color: #0284c7;
}

.alert {
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.alert-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

.alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.alert-icon {
  font-size: 16px;
}

.alert p {
  margin: 0;
  font-size: 14px;
}

.password-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.password-criteria {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.password-criteria li {
  font-size: 14px;
  color: #374151;
}

.two-factor-setting,
.notification-setting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}

.two-factor-setting:last-child,
.notification-setting:last-child {
  border-bottom: none;
}

.setting-info h4,
.setting-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.setting-info p {
  font-size: 14px;
  color: #6b7280;
}

.notifications-settings {
  margin-top: 24px;
}

.notifications-settings h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
}

/* Switch Component */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e5e7eb;
  transition: 0.2s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.2s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #3b82f6;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

.login-history,
.active-sessions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-item,
.session-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.session-item.current {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.login-status,
.session-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 16px;
}

.login-status.success,
.session-status.active {
  background: #10b981;
}

.login-status.failed {
  background: #ef4444;
}

.session-status.inactive {
  background: #6b7280;
}

.login-info,
.session-info {
  flex: 1;
}

.login-info h4,
.session-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.login-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #6b7280;
  flex-wrap: wrap;
}

.session-info p {
  font-size: 14px;
  color: #6b7280;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Responsive Design */
@media (min-width: 1024px) {
  .sidebar {
    position: fixed;
    transform: translateX(0);
  }

  .card-content button {
    width: 25%;
  }

  .mobile-menu-btn {
    display: none;
  }

  .boleto-actions a {
    width: 25%;
  }

  #passwordForm {
    width: 50%;
  }

  #passwordForm button {
    width: auto !important;
  }
}

@media (max-width: 768px) {
  .content {
    padding: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .boleto-actions a {
    width: 100%;
  }

  .card-content button {
    width: 100%;
  }

  #passwordForm button {
    width: auto !important;
  }

  .boleto-details,
  .repasse-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .boleto-actions {
    flex-direction: column;
  }

  .arquivo-card .card-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .search-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .search-filters select {
    min-width: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .ticket-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .two-factor-setting,
  .notification-setting {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .login-item,
  .session-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .login-meta {
    gap: 8px;
  }

  .tab-buttons {
    gap: 0;
  }

  .tab-button {
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .login-card {
    margin: 0 16px;
  }

  .header {
    padding: 12px 16px;
  }

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

  .arquivo-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .arquivo-meta {
    flex-direction: row;
    align-items: flex-start;
    gap: 4px;
  }

  .main-content {
    margin-left: 0px;
  }
}
