/* ========================================
   Hifdh Test Page Styles
   ======================================== */

/* Landing Section */
.test-landing {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg);
  padding: 2rem;
  gap: 2rem;
}

.landing-hero {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #0a5a28 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.hero-icon ion-icon {
  font-size: 48px;
  color: white;
}

.landing-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.landing-hero p {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Test Mode Cards */
.test-modes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.mode-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.mode-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.mode-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.mode-card:hover::before {
  transform: scaleX(1);
}

.mode-card.selected {
  border-color: var(--primary);
  background: #f0f9f4;
  box-shadow: var(--shadow-sm);
}

.mode-card.selected::before {
  transform: scaleX(1);
}

.mode-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mode-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #0a5a28 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mode-icon ion-icon {
  font-size: 24px;
  color: white;
}

.mode-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.mode-description {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.mode-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: var(--primary);
  background: #e8f5e9;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
}

.feature-tag ion-icon {
  font-size: 14px;
}

/* Test Viewer Mode */
.test-viewer {
  display: none;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg);
}

.test-viewer.active {
  display: flex;
}

/* Test Toolbar */
.test-toolbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toolbar-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.test-mode-name {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.test-scope-info {
  font-size: 0.875rem;
  color: var(--muted);
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.btn-icon ion-icon {
  font-size: 20px;
}

.btn-icon:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-icon:active {
  transform: translateY(0);
}

.progress-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--surface);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--muted);
}

.progress-indicator ion-icon {
  font-size: 16px;
}

.timer-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #fff3cd;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #856404;
}

.timer-display.warning {
  background: #f8d7da;
  color: #721c24;
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Test Content Area */
.test-content {
  flex: 1;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.question-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.question-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.question-label ion-icon {
  font-size: 16px;
}

.question-text {
  font-family: 'Amiri Quran', serif;
  font-size: 2rem;
  line-height: 2;
  text-align: right;
  direction: rtl;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: 8px;
  border: 2px dashed var(--border);
}

.question-meta {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border-radius: 6px;
  border-left: 3px solid var(--primary);
}

/* Answer Choices (MCQ) */
.choices-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.choice-btn {
  width: 100%;
  padding: 1rem 1.25rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Amiri Quran', serif;
  font-size: 1.5rem;
  text-align: right;
  direction: rtl;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.choice-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.choice-btn:hover {
  border-color: var(--primary);
  background: #f0f9f4;
  transform: translateX(-4px);
}

.choice-btn:hover::before {
  transform: scaleY(1);
}

.choice-btn.selected {
  border-color: var(--primary);
  background: #f0f9f4;
}

.choice-btn.correct {
  border-color: #28a745;
  background: #d4edda;
  color: #155724;
}

.choice-btn.incorrect {
  border-color: #dc3545;
  background: #f8d7da;
  color: #721c24;
}

/* Draggable List (Order Mode) */
.draggable-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.draggable-item {
  padding: 1rem 1.25rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Amiri Quran', serif;
  font-size: 1.5rem;
  text-align: right;
  direction: rtl;
  cursor: move;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.draggable-item.locked {
  cursor: not-allowed;
  background: var(--surface);
  border-color: var(--muted);
  opacity: 0.7;
}

.drag-handle {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 20px;
}

.draggable-item:hover:not(.locked) {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: scale(1.02);
}

.draggable-item.dragging {
  opacity: 0.5;
  transform: rotate(2deg) scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.draggable-item.correct-order {
  border-color: #28a745;
  background: #d4edda;
}

.draggable-item.incorrect-order {
  border-color: #dc3545;
  background: #f8d7da;
}

/* Fill in the Blanks */
.fill-text {
  font-family: 'Amiri Quran', serif;
  font-size: 2rem;
  line-height: 2;
  text-align: right;
  direction: rtl;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.blank-input {
  display: inline-block;
  min-width: 150px;
  padding: 0.25rem 0.5rem;
  border: none;
  border-bottom: 2px solid var(--primary);
  background: transparent;
  font-family: 'Amiri Quran', serif;
  font-size: 2rem;
  text-align: center;
  direction: rtl;
  outline: none;
  transition: all 0.2s ease;
}

.blank-input:focus {
  border-bottom-color: #0a5a28;
  background: #f0f9f4;
}

.blank-input.correct {
  border-bottom-color: #28a745;
  background: #d4edda;
}

.blank-input.incorrect {
  border-bottom-color: #dc3545;
  background: #f8d7da;
}

/* Audio Controls */
.audio-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.audio-visualizer {
  width: 100%;
  max-width: 400px;
  height: 80px;
  background: var(--surface);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 1rem;
}

.audio-bar {
  width: 4px;
  background: var(--primary);
  border-radius: 2px;
  height: 20px;
  transition: height 0.1s ease;
}

.audio-visualizer.playing .audio-bar {
  animation: audioWave 1s ease-in-out infinite;
}

.audio-visualizer.playing .audio-bar:nth-child(2) { animation-delay: 0.1s; }
.audio-visualizer.playing .audio-bar:nth-child(3) { animation-delay: 0.2s; }
.audio-visualizer.playing .audio-bar:nth-child(4) { animation-delay: 0.3s; }
.audio-visualizer.playing .audio-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes audioWave {
  0%, 100% { height: 20px; }
  50% { height: 60px; }
}

.audio-status {
  font-size: 0.9375rem;
  color: var(--muted);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Recording Controls */
.recording-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.record-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.record-btn ion-icon {
  font-size: 40px;
  color: var(--primary);
}

.record-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.record-btn.recording {
  background: #dc3545;
  border-color: #dc3545;
  animation: recordPulse 1.5s ease-in-out infinite;
}

.record-btn.recording ion-icon {
  color: white;
}

@keyframes recordPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.recording-duration {
  font-size: 1.125rem;
  font-weight: 600;
  color: #dc3545;
  font-variant-numeric: tabular-nums;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-test {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-test::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-test:active::before {
  width: 300px;
  height: 300px;
}

.btn-test ion-icon {
  font-size: 18px;
}

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

.btn-test.primary:hover:not(:disabled) {
  background: #0a5a28;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-test.secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-test.secondary:hover:not(:disabled) {
  background: white;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-test.ghost {
  background: transparent;
  color: var(--muted);
}

.btn-test.ghost:hover:not(:disabled) {
  color: var(--text);
  background: var(--surface);
}

.btn-test:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn-test:disabled:hover {
  box-shadow: none;
}

/* Result Feedback */
.result-feedback {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  animation: slideDown 0.3s ease;
}

.result-feedback ion-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.result-feedback.correct {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.result-feedback.incorrect {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.result-feedback.info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Answer Reveal */
.answer-reveal {
  padding: 1.5rem;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 8px;
  margin-top: 1rem;
  animation: slideDown 0.3s ease;
}

.answer-reveal-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.answer-reveal-text {
  font-family: 'Amiri Quran', serif;
  font-size: 1.75rem;
  line-height: 2;
  text-align: right;
  direction: rtl;
  color: var(--text);
}

/* Stats Summary */
.stats-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Configuration Panel */
.config-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.config-section {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
}

.config-section:last-of-type {
  border-bottom: none;
}

.config-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.config-section-title ion-icon {
  font-size: 22px;
  color: var(--primary);
}

.config-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.form-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-label ion-icon {
  font-size: 16px;
  color: var(--primary);
}

.form-input,
.form-select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--text);
  background: white;
  transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12, 62, 24, 0.08);
  background: rgba(12, 62, 24, 0.02);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.form-checkbox:hover {
  background: rgba(12, 62, 24, 0.05);
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-checkbox span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

/* Action Buttons Container */
.action-buttons {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  background: var(--surface-soft);
  justify-content: flex-end;
  border-top: 1px solid var(--border);
}

/* Responsive Design */
@media (max-width: 768px) {
  .test-landing {
    padding: 1rem;
  }

  .landing-hero h1 {
    font-size: 2rem;
  }

  .landing-hero p {
    font-size: 1rem;
  }

  .test-modes {
    grid-template-columns: 1fr;
  }

  .test-toolbar {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
  }

  .toolbar-center {
    order: 3;
    width: 100%;
    margin-top: 0.5rem;
  }

  .test-content {
    padding: 1rem;
  }

  .question-card {
    padding: 1.5rem;
  }

  .question-text {
    font-size: 1.5rem;
    padding: 1rem;
  }

  .choice-btn {
    font-size: 1.25rem;
    padding: 0.875rem 1rem;
  }

  .draggable-item {
    font-size: 1.25rem;
    padding: 0.875rem 1rem;
  }

  .fill-text {
    font-size: 1.5rem;
  }

  .blank-input {
    font-size: 1.5rem;
    min-width: 100px;
  }

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

  .action-buttons {
    width: 100%;
  }

  .btn-test {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-icon {
    width: 60px;
    height: 60px;
  }

  .hero-icon ion-icon {
    font-size: 36px;
  }

  .landing-hero h1 {
    font-size: 1.5rem;
  }

  .mode-title {
    font-size: 1rem;
  }

  .test-mode-name {
    font-size: 0.875rem;
  }

  .test-scope-info {
    font-size: 0.75rem;
  }
}

/* Options Modal */
.options-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}

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

.options-modal {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.options-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.options-modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.options-modal-content {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.option-group {
  margin-bottom: 1.5rem;
}

.option-group:last-child {
  margin-bottom: 0;
}

.option-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.option-label ion-icon {
  font-size: 18px;
  color: var(--primary);
}

.option-range {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--surface);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin-bottom: 0.5rem;
}

.option-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(12, 62, 24, 0.1);
}

.option-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.option-range::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(12, 62, 24, 0.1);
}

.option-value {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  background: #f0f9f4;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.option-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--surface);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-checkbox:hover {
  background: #f0f9f4;
  border: 1px solid var(--border);
  margin: -1px;
}

.option-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary);
}

.option-checkbox span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.options-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.options-modal-footer .btn-test {
  min-width: 120px;
}
