
/* Global styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}
#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Control Panel */
.control-panel {
  background-color: #2c3e50;
  color: white;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.app-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main Content */
.main-content {
  flex: 1;
  display: grid;
  grid-template-columns: 300px 1fr 350px;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  padding: 1rem;
  min-height: 0;
}
.panel {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1.5rem;
  overflow: auto;
}
.panel h2 {
  margin-bottom: 1rem;
  color: #2c3e50;
  font-size: 1.2rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}
.panel h3 {
  margin: 1rem 0 0.5rem 0;
  color: #34495e;
  font-size: 1rem;
}

/* Grid positioning */
.machine-settings {
  grid-row: 1 / 3;
}
.workspace {
  grid-row: 1 / 2;
}
.gcode-status {
  grid-row: 1 / 2;
}
.machine-controls {
  grid-row: 2 / 3;
  grid-column: 2 / 4;
}

/* Form controls */
.form-control {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}
.form-control:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}
.form-control:disabled {
  background-color: #f8f9fa;
  color: #6c757d;
  cursor: not-allowed;
}

/* Buttons */
.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.btn:active {
  transform: translateY(0);
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}
.btn-primary {
  background-color: #3498db;
  color: white;
}
.btn-primary:hover:not(:disabled) {
  background-color: #2980b9;
}
.btn-secondary {
  background-color: #95a5a6;
  color: white;
}
.btn-secondary:hover:not(:disabled) {
  background-color: #7f8c8d;
}
.btn-success {
  background-color: #27ae60;
  color: white;
}
.btn-success:hover:not(:disabled) {
  background-color: #229954;
}
.btn-warning {
  background-color: #f39c12;
  color: white;
}
.btn-warning:hover:not(:disabled) {
  background-color: #e67e22;
}
.btn-danger {
  background-color: #e74c3c;
  color: white;
}
.btn-danger:hover:not(:disabled) {
  background-color: #c0392b;
}
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}

/* Status indicators */
.status-indicator {
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
}
.status-indicator.connected {
  background-color: #d4edda;
  color: #155724;
}
.status-indicator.disconnected {
  background-color: #f8d7da;
  color: #721c24;
}
.status-indicator.connecting {
  background-color: #fff3cd;
  color: #856404;
}

/* Alert */
.alert {
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin: 0.5rem 0;
}
.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border-left: 4px solid #ffc107;
}
.alert a {
  color: inherit;
  text-decoration: underline;
}

/* Control rows and items */
.control-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.control-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
}
.control-item label {
  font-size: 0.9rem;
  color: #555;
  white-space: nowrap;
}
.control-item input[type="number"] {
  width: 80px;
}
.control-item span {
  font-size: 0.8rem;
  color: #777;
  white-space: nowrap;
}

/* Progress bar */
.progress-bar {
  width: 100%;
  height: 20px;
  background-color: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  margin: 0.5rem 0;
}
.progress-fill {
  height: 100%;
  background-color: #3498db;
  transition: width 0.3s ease;
  border-radius: 10px;
}

/* Coordinates display */
.coordinates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.coordinate {
  text-align: center;
  padding: 0.5rem;
  background-color: #f8f9fa;
  border-radius: 4px;
}
.coordinate label {
  font-weight: 500;
  color: #495057;
  display: block;
  font-size: 0.8rem;
}
.coordinate-value {
  font-family: 'Courier New', monospace;
  font-weight: bold;
  color: #2c3e50;
  font-size: 1.1rem;
}

/* Pen status */
.pen-indicator {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
}
.pen-indicator {
  background-color: #28a745;
  color: white;
}
.pen-indicator:has([data-status="down"]) {
  background-color: #dc3545;
}

/* File drop area */
.file-drop-area {
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.file-drop-area:hover {
  border-color: #3498db;
  background-color: #f8f9fa;
}
.file-drop-area.drag-over {
  border-color: #27ae60;
  background-color: #d4edda;
}
.drop-content {
  pointer-events: none;
}
.drop-content svg {
  margin-bottom: 1rem;
  color: #95a5a6;
}
.drop-content p {
  color: #7f8c8d;
  margin: 0;
}

/* SVG display */
.svg-display {
  margin-top: 1rem;
}
.canvas-container {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

/* G-code text area */
.gcode-textarea {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  line-height: 1.4;
  resize: vertical;
  min-height: 200px;
}

/* Responsive design */
@media (max-width: 1200px) {
.main-content {
    grid-template-columns: 250px 1fr 300px;
}
}
@media (max-width: 900px) {
.main-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
}
.machine-settings {
    grid-row: 1;
}
.workspace {
    grid-row: 2;
}
.gcode-status {
    grid-row: 3;
}
.machine-controls {
    grid-row: 4;
    grid-column: 1;
}
}

.login-container[data-v-fd7bfd3e] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  z-index: 1000;
}
.login-form[data-v-fd7bfd3e] {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  position: relative;
}
.close-button[data-v-fd7bfd3e] {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  padding: 0;
  line-height: 1;
}
.close-button[data-v-fd7bfd3e]:hover {
  background-color: #f0f0f0;
  color: #333;
}
.login-form h2[data-v-fd7bfd3e] {
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #333;
  padding-right: 2rem;
}
.form-group[data-v-fd7bfd3e] {
  margin-bottom: 1rem;
}
.form-group label[data-v-fd7bfd3e] {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #555;
}
.form-group input[data-v-fd7bfd3e] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}
.form-group input[data-v-fd7bfd3e]:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.form-group input[data-v-fd7bfd3e]:disabled {
  background-color: #f8f9fa;
  cursor: not-allowed;
}
.error-message[data-v-fd7bfd3e] {
  background-color: #f8d7da;
  color: #721c24;
  padding: 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #f5c6cb;
}
.submit-btn[data-v-fd7bfd3e] {
  width: 100%;
  padding: 0.75rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.submit-btn[data-v-fd7bfd3e]:hover:not(:disabled) {
  background-color: #0056b3;
}
.submit-btn[data-v-fd7bfd3e]:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}
.toggle-mode[data-v-fd7bfd3e] {
  margin-top: 1.5rem;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}
.toggle-btn[data-v-fd7bfd3e] {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
}
.toggle-btn[data-v-fd7bfd3e]:hover:not(:disabled) {
  color: #0056b3;
}
.toggle-btn[data-v-fd7bfd3e]:disabled {
  color: #6c757d;
  cursor: not-allowed;
  text-decoration: none;
}

.language-switcher[data-v-3f7e02fb] {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.lang-button[data-v-3f7e02fb] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #F8F9FA;
  border: 1px solid #DADCE0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5F6368;
}
.lang-button[data-v-3f7e02fb]:hover {
  background: #E8F0FE;
  border-color: #1A73E8;
  color: #1A73E8;
}
.lang-button.active[data-v-3f7e02fb] {
  background: #1A73E8;
  border-color: #1A73E8;
  color: white;
}
.flag[data-v-3f7e02fb] {
  font-size: 1rem;
  line-height: 1;
}
.name[data-v-3f7e02fb] {
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Flat Design - Android.com Inspired */
.start-page[data-v-0bf939b8] {
  min-height: 100vh;
  background: #FFFFFF;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Auth Buttons */
.auth-buttons[data-v-0bf939b8] {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.login-button[data-v-0bf939b8] {
  padding: 0.875rem 2rem;
  background: #1A73E8;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.login-button[data-v-0bf939b8]:hover {
  background: #1557B0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.user-avatar-button[data-v-0bf939b8] {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3DDC84 0%, #2DB068 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.user-avatar-button[data-v-0bf939b8]:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.logout-button[data-v-0bf939b8] {
  padding: 0.875rem 2rem;
  background: #EA4335;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.logout-button[data-v-0bf939b8]:hover {
  background: #C5221F;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.user-avatar-text[data-v-0bf939b8] {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.content-wrapper[data-v-0bf939b8] {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

/* Header */
.header[data-v-0bf939b8] {
  text-align: left;
  margin-bottom: 4rem;
  padding: 2rem 0;
}
.title[data-v-0bf939b8] {
  font-size: 4.5rem;
  font-weight: 700;
  color: #202124;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.subtitle[data-v-0bf939b8] {
  font-size: 1.5rem;
  color: #5F6368;
  margin: 1rem 0 0 0;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Toolkit Grid */
.toolkit-grid[data-v-0bf939b8] {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  width: 100%;
}
.toolkit-card[data-v-0bf939b8] {
  grid-column: span 6;
  background: #F8F9FA;
  border: none;
  border-radius: 16px;
  padding: 0;
  display: flex;
  align-items: center;
  cursor: default;
  transition: background-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.toolkit-card.enabled[data-v-0bf939b8] {
  cursor: pointer;
}
.toolkit-card.enabled[data-v-0bf939b8]:hover {
  background: #E8F0FE;
}
.toolkit-card.permission-denied[data-v-0bf939b8] {
  opacity: 0.6;
  cursor: not-allowed;
}
.toolkit-card.permission-denied[data-v-0bf939b8]:hover {
  background: #F8F9FA;
}
.card-icon[data-v-0bf939b8] {
  width: 80px;
  height: 80px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 1.5rem;
  border-radius: 50%;
}
.card-content[data-v-0bf939b8] {
  flex: 1;
  padding: 1.5rem;
  padding-left: 0;
}
.card-title[data-v-0bf939b8] {
  font-size: 1.5rem;
  font-weight: 500;
  color: #202124;
  margin: 0 0 0.5rem 0;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -0.01em;
}
.card-description[data-v-0bf939b8] {
  font-size: 1rem;
  color: #5F6368;
  margin: 0;
  font-weight: 400;
}
.permission-hint[data-v-0bf939b8] {
  font-size: 0.875rem;
  color: #EA4335;
  margin: 0.5rem 0 0 0;
  font-weight: 500;
}
.card-arrow[data-v-0bf939b8] {
  font-size: 2rem;
  color: var(--card-color);
  margin-right: 1.5rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.toolkit-card.enabled:hover .card-arrow[data-v-0bf939b8] {
  opacity: 1;
}
.card-lock[data-v-0bf939b8] {
  font-size: 2rem;
  margin-right: 1.5rem;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
.title[data-v-0bf939b8] {
    font-size: 3.5rem;
}
.subtitle[data-v-0bf939b8] {
    font-size: 1.25rem;
}
}
@media (max-width: 768px) {
.auth-buttons[data-v-0bf939b8] {
    top: 1rem;
    right: 1rem;
    flex-direction: column;
    gap: 0.5rem;
}
.login-button[data-v-0bf939b8],
  .logout-button[data-v-0bf939b8] {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}
.user-avatar-button[data-v-0bf939b8] {
    width: 48px;
    height: 48px;
}
.user-avatar-text[data-v-0bf939b8] {
    font-size: 1.25rem;
}
.content-wrapper[data-v-0bf939b8] {
    padding: 2rem 1.5rem;
}
.header[data-v-0bf939b8] {
    margin-bottom: 3rem;
    padding: 1rem 0;
}
.title[data-v-0bf939b8] {
    font-size: 2.5rem;
}
.subtitle[data-v-0bf939b8] {
    font-size: 1.125rem;
}
.toolkit-card[data-v-0bf939b8] {
    grid-column: span 12;
    flex-direction: column;
    text-align: center;
}
.card-icon[data-v-0bf939b8] {
    margin: 2rem auto 1rem;
}
.card-content[data-v-0bf939b8] {
    padding: 1rem 2rem 2rem;
}
.card-arrow[data-v-0bf939b8] {
    display: none;
}
}
@media (max-width: 480px) {
.auth-buttons[data-v-0bf939b8] {
    top: 0.5rem;
    right: 0.5rem;
}
.login-button[data-v-0bf939b8],
  .logout-button[data-v-0bf939b8] {
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
}
.user-avatar-button[data-v-0bf939b8] {
    width: 40px;
    height: 40px;
}
.user-avatar-text[data-v-0bf939b8] {
    font-size: 1rem;
}
.content-wrapper[data-v-0bf939b8] {
    padding: 1.5rem 1rem;
}
.title[data-v-0bf939b8] {
    font-size: 2rem;
}
.subtitle[data-v-0bf939b8] {
    font-size: 1rem;
}
.card-icon[data-v-0bf939b8] {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 2rem;
    margin: 1.5rem auto 0.75rem;
}
.card-title[data-v-0bf939b8] {
    font-size: 1.25rem;
}
.card-description[data-v-0bf939b8] {
    font-size: 0.875rem;
}
.toolkit-grid[data-v-0bf939b8] {
    gap: 1rem;
}
}

.error-container[data-v-8c0402fc] {
  padding: 2rem;
  text-align: center;
  color: #e74c3c;
}
.error-details[data-v-8c0402fc] {
  margin-top: 1rem;
  font-size: 0.9rem;
}
.error-hint[data-v-8c0402fc] {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #666;
}
code[data-v-8c0402fc] {
  background: #f5f5f5;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  display: inline-block;
  margin-top: 0.5rem;
}

/* Flat Design - Android.com Inspired */
.user-center[data-v-5c4fc11c] {
  min-height: 100vh;
  background: #FFFFFF;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.content-wrapper[data-v-5c4fc11c] {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

/* Header */
.header[data-v-5c4fc11c] {
  margin-bottom: 3rem;
  padding: 2rem 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.back-button[data-v-5c4fc11c] {
  padding: 0.75rem 1.5rem;
  background: #F8F9FA;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #202124;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.back-button[data-v-5c4fc11c]:hover {
  background: #E8F0FE;
}
.title[data-v-5c4fc11c] {
  font-size: 3.5rem;
  font-weight: 700;
  color: #202124;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: center;
}

/* User Info Card */
.user-info-card[data-v-5c4fc11c] {
  background: #F8F9FA;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.avatar-section[data-v-5c4fc11c] {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.avatar[data-v-5c4fc11c] {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3DDC84 0%, #2DB068 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.info-section[data-v-5c4fc11c] {
  margin-bottom: 2.5rem;
}
.info-item[data-v-5c4fc11c] {
  margin-bottom: 2rem;
}
.info-item[data-v-5c4fc11c]:last-child {
  margin-bottom: 0;
}
.info-label[data-v-5c4fc11c] {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5F6368;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.info-value[data-v-5c4fc11c] {
  font-size: 1.25rem;
  font-weight: 400;
  color: #202124;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.status-badge[data-v-5c4fc11c] {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  background: #F8F9FA;
  color: #5F6368;
}
.status-badge.active[data-v-5c4fc11c] {
  background: #E6F4EA;
  color: #137333;
}
.validity-badge[data-v-5c4fc11c] {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 0.75rem;
  vertical-align: middle;
}
.role-badge[data-v-5c4fc11c] {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 0.75rem;
  vertical-align: middle;
}

/* Permissions */
.permissions-container[data-v-5c4fc11c] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.permission-badge[data-v-5c4fc11c] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: #F8F9FA;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #202124;
  transition: all 0.2s ease;
}
.permission-badge[data-v-5c4fc11c]:hover {
  background: #E8F0FE;
  transform: translateY(-1px);
}
.permission-icon[data-v-5c4fc11c] {
  font-size: 1.125rem;
  line-height: 1;
}
.permission-name[data-v-5c4fc11c] {
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Usage Statistics */
.usage-stats-container[data-v-5c4fc11c] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.total-usage[data-v-5c4fc11c] {
  padding: 0.75rem 1rem;
  background: #E8F0FE;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.total-label[data-v-5c4fc11c] {
  font-size: 0.875rem;
  font-weight: 500;
  color: #5F6368;
}
.total-value[data-v-5c4fc11c] {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A73E8;
}
.usage-by-toolkit[data-v-5c4fc11c] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.usage-stat-item[data-v-5c4fc11c] {
  padding: 0.75rem 1rem;
  background: #F8F9FA;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}
.usage-stat-item[data-v-5c4fc11c]:hover {
  background: #E8EAED;
}
.usage-toolkit-name[data-v-5c4fc11c] {
  font-size: 0.95rem;
  font-weight: 500;
  color: #202124;
}
.usage-details[data-v-5c4fc11c] {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.usage-time[data-v-5c4fc11c] {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A73E8;
}
.usage-sessions[data-v-5c4fc11c] {
  font-size: 0.875rem;
  color: #5F6368;
}

/* Time Limits */
.time-limits-container[data-v-5c4fc11c] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.time-limit-item[data-v-5c4fc11c] {
  padding: 1rem;
  background: #F8F9FA;
  border-radius: 8px;
  border-left: 4px solid transparent;
  transition: all 0.2s ease;
}
.time-limit-item[data-v-5c4fc11c]:hover {
  background: #E8EAED;
}
.time-limit-header[data-v-5c4fc11c] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.time-limit-icon[data-v-5c4fc11c] {
  font-size: 1.25rem;
  line-height: 1;
}
.time-limit-name[data-v-5c4fc11c] {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  color: #202124;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.time-limit-status[data-v-5c4fc11c] {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
.time-limit-progress[data-v-5c4fc11c] {
  margin-bottom: 0.75rem;
}
.progress-bar[data-v-5c4fc11c] {
  width: 100%;
  height: 8px;
  background: #E8EAED;
  border-radius: 4px;
  overflow: hidden;
}
.progress-fill[data-v-5c4fc11c] {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.time-limit-details[data-v-5c4fc11c] {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.time-limit-detail[data-v-5c4fc11c] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  flex: 1;
}
.detail-label[data-v-5c4fc11c] {
  font-size: 0.75rem;
  font-weight: 500;
  color: #5F6368;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.detail-value[data-v-5c4fc11c] {
  font-size: 0.95rem;
  font-weight: 600;
  color: #202124;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Actions Section */
.actions-section[data-v-5c4fc11c] {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid #E8EAED;
}
.btn[data-v-5c4fc11c] {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.btn-primary[data-v-5c4fc11c] {
  background: #1A73E8;
  color: white;
}
.btn-primary[data-v-5c4fc11c]:hover {
  background: #1557B0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.btn-danger[data-v-5c4fc11c] {
  background: #EA4335;
  color: white;
}
.btn-danger[data-v-5c4fc11c]:hover {
  background: #C5221F;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.btn-secondary[data-v-5c4fc11c] {
  background: #5F6368;
  color: white;
}
.btn-secondary[data-v-5c4fc11c]:hover {
  background: #3C4043;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.btn[data-v-5c4fc11c]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Change Password Card */
.password-card[data-v-5c4fc11c] {
  background: #F8F9FA;
  border-radius: 24px;
  padding: 3rem;
  margin-top: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.card-title[data-v-5c4fc11c] {
  font-size: 1.75rem;
  font-weight: 700;
  color: #202124;
  margin: 0 0 2rem 0;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Alert Messages */
.alert[data-v-5c4fc11c] {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.alert-success[data-v-5c4fc11c] {
  background: #E6F4EA;
  color: #137333;
  border-left: 4px solid #137333;
}
.alert-error[data-v-5c4fc11c] {
  background: #FCE8E6;
  color: #C5221F;
  border-left: 4px solid #C5221F;
}

/* Form Styles */
.form-group[data-v-5c4fc11c] {
  margin-bottom: 1.5rem;
}
.form-label[data-v-5c4fc11c] {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5F6368;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.input-group[data-v-5c4fc11c] {
  position: relative;
  display: flex;
  align-items: center;
}
.form-input[data-v-5c4fc11c] {
  flex: 1;
  padding: 0.875rem 1rem;
  padding-right: 4rem;
  border: 1px solid #DADCE0;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  color: #202124;
  background: white;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: all 0.2s ease;
}
.form-input[data-v-5c4fc11c]:focus {
  outline: none;
  border-color: #1A73E8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}
.form-input[data-v-5c4fc11c]::placeholder {
  color: #9AA0A6;
}
.form-textarea[data-v-5c4fc11c] {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #DADCE0;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  color: #202124;
  background: white;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: all 0.2s ease;
  resize: vertical;
  min-height: 120px;
}
.form-textarea[data-v-5c4fc11c]:focus {
  outline: none;
  border-color: #1A73E8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}
.form-textarea[data-v-5c4fc11c]::placeholder {
  color: #9AA0A6;
}
.char-count[data-v-5c4fc11c] {
  text-align: right;
  font-size: 0.75rem;
  color: #5F6368;
  margin-top: 0.5rem;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.toggle-password[data-v-5c4fc11c] {
  position: absolute;
  right: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A73E8;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.toggle-password[data-v-5c4fc11c]:hover {
  background: #E8F0FE;
}
.form-actions[data-v-5c4fc11c] {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E8EAED;
}

/* Not Authenticated State */
.not-authenticated[data-v-5c4fc11c] {
  text-align: center;
  padding: 4rem 2rem;
}
.not-authenticated p[data-v-5c4fc11c] {
  font-size: 1.25rem;
  color: #5F6368;
  margin-bottom: 2rem;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
.title[data-v-5c4fc11c] {
    font-size: 2.5rem;
}
.user-info-card[data-v-5c4fc11c] {
    padding: 2rem;
}
.avatar[data-v-5c4fc11c] {
    width: 100px;
    height: 100px;
    font-size: 3rem;
}
}
@media (max-width: 768px) {
.content-wrapper[data-v-5c4fc11c] {
    padding: 2rem 1.5rem;
}
.header[data-v-5c4fc11c] {
    margin-bottom: 2rem;
    padding: 1rem 0;
    gap: 1rem;
}
.back-button[data-v-5c4fc11c] {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}
.title[data-v-5c4fc11c] {
    font-size: 2rem;
}
.user-info-card[data-v-5c4fc11c] {
    padding: 1.5rem;
    border-radius: 16px;
}
.avatar[data-v-5c4fc11c] {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
}
.info-value[data-v-5c4fc11c] {
    font-size: 1.125rem;
}
}
@media (max-width: 480px) {
.content-wrapper[data-v-5c4fc11c] {
    padding: 1.5rem 1rem;
}
.title[data-v-5c4fc11c] {
    font-size: 1.75rem;
}
.user-info-card[data-v-5c4fc11c] {
    padding: 1.25rem;
}
.info-item[data-v-5c4fc11c] {
    margin-bottom: 1.5rem;
}
.btn[data-v-5c4fc11c] {
    width: 100%;
    padding: 1rem;
}
}

.wearable-toolkit[data-v-3f7d7677] {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 0;
}
.container[data-v-3f7d7677] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
.header[data-v-3f7d7677] {
  margin-bottom: 3rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.header-title h1[data-v-3f7d7677] {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem 0;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.subtitle[data-v-3f7d7677] {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}
.back-btn[data-v-3f7d7677] {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.back-btn[data-v-3f7d7677]:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Main Content */
.main-content[data-v-3f7d7677] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.hello-world[data-v-3f7d7677] {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
}
.hello-text[data-v-3f7d7677] {
  font-size: 5rem;
  font-weight: 900;
  color: white;
  margin: 0 0 1rem 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp-3f7d7677 1s ease-out;
}
.description[data-v-3f7d7677] {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 300;
  animation: fadeInUp-3f7d7677 1s ease-out 0.2s both;
}
@keyframes fadeInUp-3f7d7677 {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Info Card */
.info-card[data-v-3f7d7677] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  animation: fadeInUp-3f7d7677 1s ease-out 0.4s both;
}
.info-card h2[data-v-3f7d7677] {
  font-size: 1.5rem;
  font-weight: 600;
  color: #667eea;
  margin: 0 0 1.5rem 0;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.info-item[data-v-3f7d7677] {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #E8EAED;
}
.info-item[data-v-3f7d7677]:last-child {
  border-bottom: none;
}
.info-item label[data-v-3f7d7677] {
  font-weight: 500;
  color: #5F6368;
  min-width: 150px;
  font-size: 0.875rem;
}
.info-item span[data-v-3f7d7677] {
  color: #202124;
  font-size: 1rem;
}
.status-badge[data-v-3f7d7677] {
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-badge.testing[data-v-3f7d7677] {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
.container[data-v-3f7d7677] {
    padding: 1rem;
}
.header[data-v-3f7d7677] {
    margin-bottom: 2rem;
    gap: 1rem;
}
.header-title h1[data-v-3f7d7677] {
    font-size: 2rem;
}
.subtitle[data-v-3f7d7677] {
    font-size: 1rem;
}
.back-btn[data-v-3f7d7677] {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}
.hello-world[data-v-3f7d7677] {
    padding: 3rem 1.5rem;
}
.hello-text[data-v-3f7d7677] {
    font-size: 3rem;
}
.description[data-v-3f7d7677] {
    font-size: 1.125rem;
}
.info-item[data-v-3f7d7677] {
    flex-direction: column;
    align-items: flex-start;
}
.info-item label[data-v-3f7d7677] {
    margin-bottom: 0.25rem;
}
}
@media (max-width: 480px) {
.hello-text[data-v-3f7d7677] {
    font-size: 2.5rem;
}
.description[data-v-3f7d7677] {
    font-size: 1rem;
}
.info-card[data-v-3f7d7677] {
    padding: 1.5rem;
}
}

/* Flat Design - Android.com Inspired */
.admin-panel[data-v-caced36a] {
  min-height: 100vh;
  background: #FFFFFF;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.content-wrapper[data-v-caced36a] {
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

/* Header */
.header[data-v-caced36a] {
  margin-bottom: 3rem;
  padding: 2rem 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.back-button[data-v-caced36a] {
  padding: 0.75rem 1.5rem;
  background: #F8F9FA;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #202124;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.back-button[data-v-caced36a]:hover {
  background: #E8F0FE;
}
.title[data-v-caced36a] {
  font-size: 3.5rem;
  font-weight: 700;
  color: #202124;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: center;
}

/* Error Message */
.error-message[data-v-caced36a] {
  background: #FCE8E6;
  color: #C5221F;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid #FAD2CF;
}
.loading[data-v-caced36a] {
  text-align: center;
  padding: 4rem;
  color: #5F6368;
  font-size: 1.25rem;
}

/* Modern Table */
.table-container[data-v-caced36a] {
  background: #F8F9FA;
  border-radius: 16px;
  overflow-x: auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.users-table[data-v-caced36a] {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.users-table thead[data-v-caced36a] {
  background: #E8EAED;
}
.users-table th[data-v-caced36a] {
  padding: 1rem 1rem;
  text-align: left;
  font-weight: 500;
  font-size: 0.875rem;
  color: #5F6368;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #DADCE0;
}
.users-table tbody[data-v-caced36a] {
  background: white;
}
.table-row[data-v-caced36a] {
  border-bottom: 1px solid #E8EAED;
  transition: background-color 0.2s ease;
}
.table-row[data-v-caced36a]:hover {
  background: #F8F9FA;
}
.table-row[data-v-caced36a]:last-child {
  border-bottom: none;
}
.users-table td[data-v-caced36a] {
  padding: 1rem 1rem;
  vertical-align: middle;
}

/* User Cell with Avatar */
.user-cell[data-v-caced36a] {
  min-width: 200px;
  max-width: 280px;
}
.user-main-info[data-v-caced36a] {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.table-avatar[data-v-caced36a] {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3DDC84 0%, #2DB068 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.user-text-info[data-v-caced36a] {
  flex: 1;
  min-width: 0;
}
.table-username[data-v-caced36a] {
  font-size: 1rem;
  font-weight: 500;
  color: #202124;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.table-email[data-v-caced36a] {
  font-size: 0.875rem;
  color: #5F6368;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Telephone Cell */
.telephone-cell[data-v-caced36a] {
  font-size: 0.875rem;
  color: #202124;
  white-space: nowrap;
  min-width: 100px;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Badges */
.badge[data-v-caced36a] {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}
.badge-admin[data-v-caced36a] {
  background: #FCE8E6;
  color: #C5221F;
}
.badge-user[data-v-caced36a] {
  background: #E8F0FE;
  color: #1A73E8;
}
.badge-active[data-v-caced36a] {
  background: #E6F4EA;
  color: #137333;
}
.badge-inactive[data-v-caced36a] {
  background: #F8F9FA;
  color: #5F6368;
}

/* Validity Cell */
.validity-cell[data-v-caced36a] {
  font-size: 0.875rem;
  color: #202124;
  min-width: 100px;
  max-width: 140px;
}
.lifetime-text[data-v-caced36a] {
  color: #137333;
  font-weight: 500;
}
.expired[data-v-caced36a] {
  color: #C5221F;
}
.expired-badge[data-v-caced36a] {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #FCE8E6;
  color: #C5221F;
  border-radius: 6px;
  font-size: 0.7rem;
  margin-left: 0.5rem;
  font-weight: 500;
}
.no-value[data-v-caced36a] {
  color: #5F6368;
  font-style: italic;
}

/* Usage Cell */
.usage-cell[data-v-caced36a] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 100px;
  max-width: 150px;
}
.usage-time[data-v-caced36a] {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A73E8;
}
.btn-view-usage[data-v-caced36a] {
  padding: 0.25rem 0.75rem;
  background: #E8F0FE;
  border: none;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1A73E8;
  cursor: pointer;
  transition: background-color 0.2s ease;
  align-self: flex-start;
}
.btn-view-usage[data-v-caced36a]:hover {
  background: #D2E3FC;
}

/* Permissions Cell */
.permissions-cell[data-v-caced36a] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 280px;
}
.permission-tag[data-v-caced36a] {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: #E8F0FE;
  color: #1A73E8;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}
.no-permissions[data-v-caced36a] {
  color: #5F6368;
  font-size: 0.875rem;
  font-style: italic;
}

/* Actions Cell */
.actions-cell[data-v-caced36a] {
  display: flex;
  gap: 0.5rem;
  min-width: 120px;
  justify-content: flex-start;
}
.btn-icon[data-v-caced36a] {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F9FA;
}
.btn-edit-icon[data-v-caced36a]:hover {
  background: #E8F0FE;
}
.btn-restrictions-icon[data-v-caced36a]:hover {
  background: #E8F0FE;
}
.btn-delete-icon[data-v-caced36a]:hover {
  background: #FCE8E6;
}
.btn-icon[data-v-caced36a]:active {
  transform: scale(0.95);
}

/* Buttons (for modal) */
.btn[data-v-caced36a] {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.btn-edit[data-v-caced36a] {
  background: #1A73E8;
  color: white;
}
.btn-edit[data-v-caced36a]:hover {
  background: #1557B0;
}
.btn-delete[data-v-caced36a] {
  background: #EA4335;
  color: white;
}
.btn-delete[data-v-caced36a]:hover {
  background: #C5221F;
}

/* Modal */
.modal-overlay[data-v-caced36a] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}
.modal-content[data-v-caced36a] {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.modal-header[data-v-caced36a] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #E8EAED;
}
.modal-header h2[data-v-caced36a] {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #202124;
}
.close-button[data-v-caced36a] {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #5F6368;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.close-button[data-v-caced36a]:hover {
  background: #F8F9FA;
  border-radius: 50%;
}
.modal-body[data-v-caced36a] {
  padding: 2rem;
}
.form-group[data-v-caced36a] {
  margin-bottom: 1.5rem;
}
.form-group label[data-v-caced36a] {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #202124;
}
.form-group small[data-v-caced36a] {
  display: block;
  margin-top: 0.25rem;
  color: #5F6368;
  font-size: 0.875rem;
}
.form-input[data-v-caced36a] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #DADCE0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.form-input[data-v-caced36a]:focus {
  outline: none;
  border-color: #1A73E8;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}
.toolkit-checkboxes[data-v-caced36a] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.toolkit-checkbox[data-v-caced36a] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.toolkit-checkbox input[type="checkbox"][data-v-caced36a] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.modal-footer[data-v-caced36a] {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 2rem;
  border-top: 1px solid #E8EAED;
}
.btn-cancel[data-v-caced36a] {
  background: #F8F9FA;
  color: #202124;
}
.btn-cancel[data-v-caced36a]:hover {
  background: #E8EAED;
}
.btn-save[data-v-caced36a] {
  background: #1A73E8;
  color: white;
}
.btn-save[data-v-caced36a]:hover {
  background: #1557B0;
}

/* Usage Details Modal Styles */
.usage-details-content[data-v-caced36a] {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.total-usage-display[data-v-caced36a] {
  padding: 1rem 1.5rem;
  background: #E8F0FE;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.total-usage-label[data-v-caced36a] {
  font-size: 1rem;
  font-weight: 500;
  color: #5F6368;
}
.total-usage-value[data-v-caced36a] {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A73E8;
}
.toolkit-usage-list h3[data-v-caced36a] {
  font-size: 1.125rem;
  font-weight: 500;
  color: #202124;
  margin: 0 0 1rem 0;
}
.toolkit-usage-item[data-v-caced36a] {
  padding: 1rem;
  background: #F8F9FA;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.toolkit-usage-item[data-v-caced36a]:last-child {
  margin-bottom: 0;
}
.toolkit-name[data-v-caced36a] {
  font-size: 1rem;
  font-weight: 500;
  color: #202124;
}
.toolkit-stats[data-v-caced36a] {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.toolkit-time[data-v-caced36a] {
  font-size: 1rem;
  font-weight: 600;
  color: #1A73E8;
}
.toolkit-sessions[data-v-caced36a] {
  font-size: 0.875rem;
  color: #5F6368;
}
.no-usage-data[data-v-caced36a] {
  text-align: center;
  padding: 2rem;
  color: #5F6368;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1400px) {
.content-wrapper[data-v-caced36a] {
    max-width: 1400px;
}
}
@media (max-width: 1024px) {
.title[data-v-caced36a] {
    font-size: 2.5rem;
}
.content-wrapper[data-v-caced36a] {
    max-width: 100%;
}
.table-container[data-v-caced36a] {
    overflow-x: auto;
}
.users-table[data-v-caced36a] {
    min-width: 900px;
}
}
@media (max-width: 768px) {
.content-wrapper[data-v-caced36a] {
    padding: 2rem 1.5rem;
}
.header[data-v-caced36a] {
    margin-bottom: 2rem;
    padding: 1rem 0;
    gap: 1rem;
}
.back-button[data-v-caced36a] {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}
.title[data-v-caced36a] {
    font-size: 2rem;
}
.users-table th[data-v-caced36a],
  .users-table td[data-v-caced36a] {
    padding: 1rem;
}
.table-avatar[data-v-caced36a] {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}
.permissions-cell[data-v-caced36a] {
    max-width: 250px;
}
}
@media (max-width: 480px) {
.content-wrapper[data-v-caced36a] {
    padding: 1.5rem 1rem;
}
.title[data-v-caced36a] {
    font-size: 1.75rem;
}
.users-table th[data-v-caced36a],
  .users-table td[data-v-caced36a] {
    padding: 0.75rem;
    font-size: 0.875rem;
}
.table-avatar[data-v-caced36a] {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
}
.badge[data-v-caced36a] {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
}
.permission-tag[data-v-caced36a] {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
}
}

/* Tab Navigation */
.tab-navigation[data-v-caced36a] {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #E8EAED;
  padding-bottom: 0;
}
.tab-button[data-v-caced36a] {
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 1rem;
  font-weight: 500;
  color: #5F6368;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin-bottom: -2px;
}
.tab-button[data-v-caced36a]:hover {
  color: #202124;
}
.tab-active[data-v-caced36a] {
  color: #1A73E8;
  border-bottom-color: #1A73E8;
}

/* Behavioral Content */
.behavioral-content[data-v-caced36a] {
  animation: fadeIn-caced36a 0.3s ease;
}
@keyframes fadeIn-caced36a {
from { opacity: 0; transform: translateY(10px);
}
to { opacity: 1; transform: translateY(0);
}
}

/* Period Selector */
.period-selector[data-v-caced36a] {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #F8F9FA;
  border-radius: 12px;
}
.period-label[data-v-caced36a] {
  font-size: 1rem;
  font-weight: 500;
  color: #202124;
  margin: 0;
}
.period-buttons[data-v-caced36a] {
  display: flex;
  gap: 0.5rem;
}
.period-button[data-v-caced36a] {
  padding: 0.625rem 1.25rem;
  background: white;
  border: 1px solid #DADCE0;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5F6368;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.period-button[data-v-caced36a]:hover {
  background: #F8F9FA;
  border-color: #1A73E8;
  color: #1A73E8;
}
.period-active[data-v-caced36a] {
  background: #1A73E8;
  border-color: #1A73E8;
  color: white;
}

/* Behavioral Stats */
.behavioral-stats[data-v-caced36a] {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Stats Cards */
.stats-cards[data-v-caced36a] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.stat-card[data-v-caced36a] {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #E8EAED;
}
.stat-icon[data-v-caced36a] {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F9FA;
  border-radius: 12px;
  flex-shrink: 0;
}
.stat-content[data-v-caced36a] {
  flex: 1;
}
.stat-label[data-v-caced36a] {
  font-size: 0.875rem;
  color: #5F6368;
  margin-bottom: 0.25rem;
}
.stat-value[data-v-caced36a] {
  font-size: 1.5rem;
  font-weight: 700;
  color: #202124;
  margin-bottom: 0.25rem;
}
.stat-sub[data-v-caced36a] {
  font-size: 0.875rem;
  color: #5F6368;
}

/* Behavioral Sections */
.behavioral-section[data-v-caced36a] {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #E8EAED;
}
.section-title[data-v-caced36a] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #202124;
  margin: 0 0 1.5rem 0;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hours Grid */
.hours-grid[data-v-caced36a] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.hour-card[data-v-caced36a] {
  background: #F8F9FA;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #E8EAED;
  transition: all 0.2s ease;
}
.hour-card[data-v-caced36a]:hover {
  background: #E8F0FE;
  border-color: #1A73E8;
  transform: translateY(-2px);
}
.hour-time[data-v-caced36a] {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1A73E8;
  margin-bottom: 0.5rem;
}
.hour-stats[data-v-caced36a] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hour-sessions[data-v-caced36a] {
  font-size: 0.875rem;
  color: #202124;
  font-weight: 500;
}
.hour-duration[data-v-caced36a] {
  font-size: 0.875rem;
  color: #5F6368;
}

/* Toolkit Usage Grid */
.toolkit-usage-grid[data-v-caced36a] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.toolkit-card[data-v-caced36a] {
  background: #F8F9FA;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #E8EAED;
  transition: all 0.2s ease;
}
.toolkit-card[data-v-caced36a]:hover {
  background: white;
  border-color: #1A73E8;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.15);
}
.toolkit-header[data-v-caced36a] {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E8EAED;
}
.toolkit-icon[data-v-caced36a] {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8F0FE;
  border-radius: 8px;
}
.toolkit-name[data-v-caced36a] {
  font-size: 1.125rem;
  font-weight: 600;
  color: #202124;
}
.toolkit-metrics[data-v-caced36a] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.metric[data-v-caced36a] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.metric-label[data-v-caced36a] {
  font-size: 0.875rem;
  color: #5F6368;
}
.metric-value[data-v-caced36a] {
  font-size: 1rem;
  font-weight: 600;
  color: #1A73E8;
}

/* Top Users List */
.top-users-list[data-v-caced36a] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.top-user-card[data-v-caced36a] {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #F8F9FA;
  border-radius: 8px;
  border: 1px solid #E8EAED;
  transition: all 0.2s ease;
}
.top-user-card[data-v-caced36a]:hover {
  background: #E8F0FE;
  border-color: #1A73E8;
}
.user-rank[data-v-caced36a] {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8F0FE;
  color: #1A73E8;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
}
.user-info[data-v-caced36a] {
  flex: 1;
  min-width: 0;
}
.user-name[data-v-caced36a] {
  font-size: 1rem;
  font-weight: 600;
  color: #202124;
  margin-bottom: 0.25rem;
}
.user-email[data-v-caced36a] {
  font-size: 0.875rem;
  color: #5F6368;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-activity[data-v-caced36a] {
  text-align: right;
  flex-shrink: 0;
}
.activity-time[data-v-caced36a] {
  font-size: 1rem;
  font-weight: 600;
  color: #1A73E8;
  margin-bottom: 0.25rem;
}
.activity-sessions[data-v-caced36a] {
  font-size: 0.875rem;
  color: #5F6368;
}
.no-data[data-v-caced36a] {
  text-align: center;
  padding: 4rem;
  color: #5F6368;
  font-size: 1.125rem;
  background: #F8F9FA;
  border-radius: 12px;
  border: 1px solid #E8EAED;
}

/* Responsive Design for Behavioral Section */
@media (max-width: 1024px) {
.stats-cards[data-v-caced36a] {
    grid-template-columns: 1fr;
}
.hours-grid[data-v-caced36a] {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.toolkit-usage-grid[data-v-caced36a] {
    grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.period-selector[data-v-caced36a] {
    flex-direction: column;
    align-items: stretch;
}
.period-buttons[data-v-caced36a] {
    flex-direction: column;
}
.period-button[data-v-caced36a] {
    width: 100%;
}
.hours-grid[data-v-caced36a] {
    grid-template-columns: 1fr;
}
.stat-card[data-v-caced36a] {
    padding: 1rem;
}
.stat-icon[data-v-caced36a] {
    width: 48px;
    height: 48px;
    font-size: 2rem;
}
.stat-value[data-v-caced36a] {
    font-size: 1.25rem;
}
}

/* Feedback Content */
.feedback-content[data-v-caced36a] {
  animation: fadeIn-caced36a 0.3s ease;
}

/* Feedback Filter */
.feedback-filter[data-v-caced36a] {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #F8F9FA;
  border-radius: 12px;
}
.filter-label[data-v-caced36a] {
  font-size: 1rem;
  font-weight: 500;
  color: #202124;
  margin: 0;
}
.filter-buttons[data-v-caced36a] {
  display: flex;
  gap: 0.5rem;
}
.filter-button[data-v-caced36a] {
  padding: 0.625rem 1.25rem;
  background: white;
  border: 1px solid #DADCE0;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5F6368;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.filter-button[data-v-caced36a]:hover {
  background: #F8F9FA;
  border-color: #1A73E8;
  color: #1A73E8;
}
.filter-active[data-v-caced36a] {
  background: #1A73E8;
  border-color: #1A73E8;
  color: white;
}

/* Feedback List */
.feedback-list[data-v-caced36a] {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.feedback-card[data-v-caced36a] {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #E8EAED;
  transition: all 0.2s ease;
}
.feedback-card[data-v-caced36a]:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.feedback-header[data-v-caced36a] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E8EAED;
}
.feedback-user[data-v-caced36a] {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.feedback-avatar[data-v-caced36a] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3DDC84 0%, #2DB068 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.feedback-user-info[data-v-caced36a] {
  flex: 1;
}
.feedback-username[data-v-caced36a] {
  font-size: 1rem;
  font-weight: 600;
  color: #202124;
  margin-bottom: 0.25rem;
}
.feedback-email[data-v-caced36a] {
  font-size: 0.875rem;
  color: #5F6368;
}
.feedback-meta[data-v-caced36a] {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.feedback-date[data-v-caced36a] {
  font-size: 0.875rem;
  color: #5F6368;
}
.feedback-status-badge[data-v-caced36a] {
  padding: 0.375rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
.status-resolved[data-v-caced36a] {
  background: #E6F4EA;
  color: #137333;
}
.status-unresolved[data-v-caced36a] {
  background: #FCE8E6;
  color: #C5221F;
}
.feedback-content[data-v-caced36a] {
  font-size: 1rem;
  color: #202124;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.feedback-actions[data-v-caced36a] {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  padding-top: 1rem;
  border-top: 1px solid #E8EAED;
}
.btn-feedback[data-v-caced36a] {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.btn-toggle-resolve[data-v-caced36a] {
  background: #E8F0FE;
  color: #1A73E8;
}
.btn-toggle-resolve[data-v-caced36a]:hover {
  background: #D2E3FC;
}
.btn-delete[data-v-caced36a] {
  background: #FCE8E6;
  color: #C5221F;
}
.btn-delete[data-v-caced36a]:hover {
  background: #FAD2CF;
}

/* Pagination */
.pagination[data-v-caced36a] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #F8F9FA;
  border-radius: 12px;
}
.pagination-button[data-v-caced36a] {
  padding: 0.625rem 1.25rem;
  background: white;
  border: 1px solid #DADCE0;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5F6368;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.pagination-button[data-v-caced36a]:hover:not(:disabled) {
  background: #E8F0FE;
  border-color: #1A73E8;
  color: #1A73E8;
}
.pagination-button[data-v-caced36a]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination-info[data-v-caced36a] {
  font-size: 0.875rem;
  color: #5F6368;
}

/* Restrictions in Modal */
.restrictions-list-in-modal[data-v-caced36a] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.restriction-item-in-modal[data-v-caced36a] {
  padding: 0.75rem;
  background: #F8F9FA;
  border-radius: 8px;
  border: 1px solid #E8EAED;
  transition: all 0.2s ease;
}
.restriction-item-in-modal[data-v-caced36a]:hover {
  background: #E8F0FE;
  border-color: #D2E3FC;
}
.restriction-toolkit-info[data-v-caced36a] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.restriction-toolkit-name[data-v-caced36a] {
  font-size: 0.95rem;
  font-weight: 600;
  color: #202124;
}
.btn-add-restriction[data-v-caced36a] {
  width: 28px;
  height: 28px;
  border: none;
  background: #E8F0FE;
  color: #1A73E8;
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.btn-add-restriction[data-v-caced36a]:hover {
  background: #D2E3FC;
}
.btn-remove-restriction[data-v-caced36a] {
  width: 28px;
  height: 28px;
  border: none;
  background: #FCE8E6;
  color: #C5221F;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.btn-remove-restriction[data-v-caced36a]:hover {
  background: #FAD2CF;
}
.restriction-time-input[data-v-caced36a] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.restriction-time-input label[data-v-caced36a] {
  font-size: 0.875rem;
  color: #5F6368;
  margin: 0;
  white-space: nowrap;
}
.small-input[data-v-caced36a] {
  width: 120px !important;
  padding: 0.5rem !important;
  font-size: 0.875rem !important;
}

/* Current Usage Section in Restrictions Modal */
.current-usage-section[data-v-caced36a] {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E8EAED;
}
.current-usage-section h3[data-v-caced36a] {
  font-size: 1rem;
  font-weight: 600;
  color: #202124;
  margin: 0 0 1rem 0;
}
.usage-item[data-v-caced36a] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: #F8F9FA;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.usage-toolkit-name[data-v-caced36a] {
  font-size: 0.95rem;
  font-weight: 600;
  color: #202124;
}
.usage-stats[data-v-caced36a] {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.usage-stat[data-v-caced36a] {
  font-size: 0.875rem;
  color: #5F6368;
  padding: 0.25rem 0.5rem;
  background: white;
  border-radius: 6px;
  border: 1px solid #E8EAED;
}

/* Table Header with Filter */
.table-header-with-filter[data-v-caced36a] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.table-header-with-filter span[data-v-caced36a] {
  flex: 1;
}

/* Filter Button (Funnel Icon) */
.filter-button[data-v-caced36a] {
  width: 24px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #5F6368;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.filter-button[data-v-caced36a]:hover {
  background: #E8F0FE;
  color: #1A73E8;
}
.filter-button.filter-active[data-v-caced36a] {
  color: #1A73E8;
  background: #D2E3FC;
}

/* Filter Dropdown Panel */
.filter-dropdown[data-v-caced36a] {
  position: fixed;
  background: white;
  border: 1px solid #DADCE0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 200px;
  max-width: 300px;
  padding: 1rem;
}

/* Filter Section */
.filter-section[data-v-caced36a] {
  margin-bottom: 1rem;
}
.filter-section[data-v-caced36a]:last-child {
  margin-bottom: 0;
}
.filter-section label[data-v-caced36a] {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #202124;
  margin-bottom: 0.5rem;
}

/* Filter Input */
.filter-input[data-v-caced36a] {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #DADCE0;
  border-radius: 6px;
  font-size: 0.875rem;
  font-family: inherit;
}
.filter-input[data-v-caced36a]:focus {
  outline: none;
  border-color: #1A73E8;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

/* Filter Checkbox */
.filter-checkbox[data-v-caced36a] {
  padding: 0.5rem 0;
}
.filter-checkbox label[data-v-caced36a] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin: 0;
  font-size: 0.875rem;
  color: #202124;
}
.filter-checkbox input[type="checkbox"][data-v-caced36a] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Filter Actions */
.filter-actions[data-v-caced36a] {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.75rem;
  border-top: 1px solid #E8EAED;
  margin-top: 0.5rem;
}
.btn-clear[data-v-caced36a] {
  padding: 0.375rem 0.75rem;
  background: #F8F9FA;
  border: 1px solid #DADCE0;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5F6368;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.btn-clear[data-v-caced36a]:hover {
  background: #E8EAED;
  border-color: #1A73E8;
  color: #1A73E8;
}

/* Clear All Filters Bar */
.clear-all-filters[data-v-caced36a] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #E8F0FE;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.filter-count[data-v-caced36a] {
  font-size: 0.875rem;
  color: #1A73E8;
  font-weight: 500;
}
.btn-clear-all[data-v-caced36a] {
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid #1A73E8;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A73E8;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.btn-clear-all[data-v-caced36a]:hover {
  background: #D2E3FC;
}

/* Redemption Codes Content */
.redemption-content[data-v-caced36a] {
  animation: fadeIn-caced36a 0.3s ease;
}
.redemption-stats[data-v-caced36a] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.redemption-header[data-v-caced36a] {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}
.redemption-filter[data-v-caced36a] {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #F8F9FA;
  border-radius: 12px;
}
.code-display[data-v-caced36a] {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: #F8F9FA;
  border: 1px solid #DADCE0;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  font-weight: 600;
  color: #202124;
  letter-spacing: 0.05em;
}
.btn-disable-icon[data-v-caced36a] {
  background: #FCE8E6;
  color: #C5221F;
}
.btn-disable-icon[data-v-caced36a]:hover {
  background: #FAD2CF;
}
.btn-enable-icon[data-v-caced36a] {
  background: #E6F4EA;
  color: #137333;
}
.btn-enable-icon[data-v-caced36a]:hover {
  background: #CEead6;
}
.success-message[data-v-caced36a] {
  padding: 1rem 1.5rem;
  background: #E6F4EA;
  color: #137333;
  border-radius: 12px;
  margin-bottom: 1rem;
  text-align: center;
}
.newly-created-codes[data-v-caced36a] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  max-height: 300px;
  overflow-y: auto;
}
.code-item[data-v-caced36a] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: white;
  border-radius: 8px;
}
.code-item .code-display[data-v-caced36a] {
  font-size: 1.1rem;
  padding: 0.4rem 0.8rem;
  flex: 1;
  text-align: center;
}
.btn-sm[data-v-caced36a] {
  padding: 0.4rem 0.8rem;
  font-size: 0.875rem;
}
.hint[data-v-caced36a] {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #5F6368;
}

/* Responsive Design for Redemption Stats */
@media (max-width: 1024px) {
.redemption-stats[data-v-caced36a] {
    grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 768px) {
.redemption-stats[data-v-caced36a] {
    grid-template-columns: 1fr;
}
.redemption-filter[data-v-caced36a] {
    flex-direction: column;
    align-items: stretch;
}
.redemption-header[data-v-caced36a] {
    justify-content: stretch;
}
.redemption-header .btn[data-v-caced36a] {
    width: 100%;
}
}

