* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

:root {
  --sky-blue: #00c4ff;
  --sky-pink: #ff005e;
  --sky-green: #00ffb3;
  --sky-blue-light: rgba(0, 196, 255, 0.1);
  --sky-pink-light: rgba(255, 0, 94, 0.1);
  --sky-green-light: rgba(0, 255, 179, 0.1);
  --light-bg: #ffffff;
  --card-bg: #f8f9fa;
  --card-hover: #f1f3f4;
  --text-primary: #202124;
  --text-secondary: #5f6368;
  --text-tertiary: #9aa0a6;
  --border-light: #dadce0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.12);
  --success-color: #00c853;
  --warning-color: #ff9100;
  --error-color: #ff4444;
}

body {
  background: var(--light-bg);
  color: var(--text-primary);
  line-height: 1;
  padding: 10px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px;
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 20px;
  padding: 10px 0;
}

.hero-section h1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--sky-blue), var(--sky-pink), var(--sky-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-section p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto;
}

.gradient-bar {
  height: 3px;
  width: 300px;
  background: linear-gradient(90deg, var(--sky-blue), var(--sky-pink), var(--sky-green));
  margin: 10px auto 15px;
  border-radius: 2px;
}

/* Recording Section */
.recording-section {
  margin: 20px 0;
}

.recording-container {
  background: var(--card-bg);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

/* Microphone Setup */
.microphone-setup {
  text-align: center;
  padding: 40px 20px;
}

.setup-content {
  max-width: 500px;
  margin: 0 auto;
}

.setup-icon {
  font-size: 4rem;
  color: var(--sky-green);
  margin-bottom: 20px;
}

.setup-content h3 {
  margin-bottom: 15px;
  color: var(--text-primary);
  font-size: 1.5rem;
}

.setup-content p {
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.5;
}

.setup-button {
  padding: 15px 30px;
  background: linear-gradient(90deg, var(--sky-green), var(--sky-blue));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.setup-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.setup-tips {
  margin-top: 30px;
  text-align: left;
  background: var(--light-bg);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--sky-green);
}

.setup-tips h4 {
  margin-bottom: 15px;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.setup-tips ul {
  list-style: none;
}

.setup-tips li {
  padding: 8px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.setup-tips li i {
  color: var(--sky-green);
  margin-right: 10px;
  font-size: 0.9rem;
}

/* Recording Interface */
.recording-interface {
  text-align: center;
}

/* Visualization */
.visualization-container {
  margin-bottom: 30px;
}

.volume-meter {
  margin-bottom: 25px;
}

.meter-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.meter-bar {
  width: 100%;
  height: 20px;
  background: var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
  position: relative;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sky-green), var(--sky-blue), var(--sky-pink));
  border-radius: 10px;
  width: 0%;
  transition: width 0.1s ease;
}

.meter-labels {
  display: flex;
  justify-content: space-between;
  color: var(--text-tertiary);
  font-size: 0.8rem;
  font-weight: 500;
}

.waveform-container {
  margin-top: 20px;
}

#waveformCanvas {
  border-radius: 8px;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
}

/* Recording Controls */
.recording-controls {
  margin-bottom: 25px;
}

.recording-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px 20px;
  background: var(--light-bg);
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.recording-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.recording-status i {
  color: var(--text-tertiary);
  font-size: 0.8rem;
}

.recording-status.recording i {
  color: var(--error-color);
  animation: pulse 1s infinite;
}

.recording-status.paused i {
  color: var(--warning-color);
}

.recording-timer {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: monospace;
}

.recording-size {
  color: var(--text-secondary);
  font-weight: 600;
}

.control-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.record-button, .pause-button, .stop-button {
  padding: 15px 25px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  box-shadow: var(--shadow);
}

.record-button {
  background: var(--sky-green);
  color: white;
}

.record-button:hover:not(:disabled) {
  background: #00e6a0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.record-button.recording {
  background: var(--error-color);
}

.pause-button {
  background: var(--warning-color);
  color: white;
}

.pause-button:hover:not(:disabled) {
  background: #ffa733;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.stop-button {
  background: var(--sky-pink);
  color: white;
}

.stop-button:hover:not(:disabled) {
  background: #ff1a75;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.record-button:disabled, .pause-button:disabled, .stop-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.additional-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.playback-button, .delete-button {
  padding: 10px 20px;
  border: 2px solid var(--border-light);
  background: transparent;
  color: var(--text-primary);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.playback-button:hover:not(:disabled) {
  border-color: var(--sky-blue);
  color: var(--sky-blue);
}

.delete-button:hover:not(:disabled) {
  border-color: var(--error-color);
  color: var(--error-color);
}

.playback-button:disabled, .delete-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Recording Progress */
.recording-progress {
  margin-top: 20px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--border-light);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sky-green), var(--sky-blue));
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s ease;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  color: var(--text-tertiary);
  font-size: 0.8rem;
}

/* Settings Section */
.settings-section {
  margin: 40px 0;
}

.settings-container {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.setting-group {
  background: var(--light-bg);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.setting-group h3 {
  margin-bottom: 15px;
  color: var(--text-primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.setting-group h3 i {
  color: var(--sky-blue);
}

/* Quality Options */
.quality-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quality-option input {
  display: none;
}

.quality-option label {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 12px;
}

.quality-option input:checked + label {
  border-color: var(--sky-green);
  background: var(--sky-green-light);
}

.quality-option label:hover {
  border-color: var(--sky-blue);
}

.quality-icon {
  font-size: 1.5rem;
  color: var(--sky-blue);
  width: 40px;
  display: flex;
  justify-content: center;
}

.quality-info strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.quality-info small {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* Format Options */
.format-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.format-option input {
  display: none;
}

.format-option label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.format-option input:checked + label {
  border-color: var(--sky-green);
  background: var(--sky-green-light);
}

.format-option label:hover {
  border-color: var(--sky-blue);
}

.format-option strong {
  color: var(--text-primary);
}

.format-option small {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* Option Controls */
.option-controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.option-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.option-item label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.duration-select, .noise-select, .microphone-select {
  padding: 10px 12px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  background: var(--light-bg);
  color: var(--text-primary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.duration-select:hover, .noise-select:hover, .microphone-select:hover {
  border-color: var(--sky-blue);
}

.duration-select:focus, .noise-select:focus, .microphone-select:focus {
  outline: none;
  border-color: var(--sky-green);
}

.option-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-primary);
  padding: 5px 0;
}

.checkbox-label input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-light);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
  background: var(--sky-green);
  border-color: var(--sky-green);
}

.checkbox-label input:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  color: white;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Microphone Selection */
.microphone-selection {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.microphone-test {
  display: flex;
  align-items: center;
  gap: 15px;
}

.test-button {
  padding: 8px 15px;
  border: 2px solid var(--sky-blue);
  background: transparent;
  color: var(--sky-blue);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.test-button:hover {
  background: var(--sky-blue);
  color: white;
}

.test-status {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Library Section */
.library-section {
  margin: 40px 0;
}

.library-container {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

.library-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
}

.library-header h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
}

.action-btn {
  padding: 8px 15px;
  border: 1px solid var(--error-color);
  background: transparent;
  color: var(--error-color);
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.action-btn:hover {
  background: var(--error-color);
  color: white;
}

.recordings-list {
  min-height: 200px;
}

.no-recordings {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-tertiary);
}

.no-recordings-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--border-light);
}

.no-recordings h4 {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.no-recordings p {
  color: var(--text-tertiary);
}

/* Recording Item */
.recording-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: var(--light-bg);
  border-radius: 8px;
  border: 1px solid var(--border-light);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.recording-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.recording-icon {
  font-size: 1.5rem;
  color: var(--sky-blue);
  margin-right: 15px;
}

.recording-details {
  flex: 1;
}

.recording-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.recording-meta {
  display: flex;
  gap: 15px;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.recording-actions {
  display: flex;
  gap: 8px;
}

.recording-action-btn {
  padding: 6px 12px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-primary);
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.recording-action-btn:hover {
  border-color: var(--sky-blue);
  color: var(--sky-blue);
}

.recording-action-btn.delete:hover {
  border-color: var(--error-color);
  color: var(--error-color);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--light-bg);
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-hover);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: var(--text-primary);
  background: var(--card-hover);
}

.modal-body {
  padding: 20px;
}

.player-audio {
  margin-bottom: 20px;
}

.player-audio audio {
  width: 100%;
  border-radius: 8px;
}

.player-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.info-item .label {
  color: var(--text-secondary);
  font-weight: 500;
}

.info-item .value {
  color: var(--text-primary);
  font-weight: 600;
}

.modal-footer {
  display: flex;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid var(--border-light);
}

.download-btn, .delete-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.download-btn {
  background: var(--sky-green);
  color: white;
}

.download-btn:hover {
  background: #00e6a0;
}

.delete-btn {
  background: var(--error-color);
  color: white;
}

.delete-btn:hover {
  background: #ff6666;
}

/* Use Cases Section */
.use-cases-section {
  margin: 20px 0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}

.use-case-card {
  background: var(--light-bg);
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-blue), var(--sky-pink), var(--sky-green));
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.use-case-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--sky-green);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
  color: var(--sky-pink);
  transform: scale(1.05);
}

.use-case-card h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
}

.use-case-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Steps Section */
.steps-section {
  margin: 50px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.step-card {
  background: var(--light-bg);
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-blue), var(--sky-pink), var(--sky-green));
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--sky-green);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  color: var(--sky-pink);
  transform: scale(1.05);
}

.step-card h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* FAQ Section */
.faq-section {
  margin: 50px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light-bg);
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: var(--card-hover);
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--sky-green);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--sky-pink);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.9rem;
}

.faq-item.active .faq-answer {
  padding: 0 20px 18px;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.5s ease forwards;
}

/* Pulse animation for recording */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* Section Title */
.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin: 40px 0 30px;
  position: relative;
  color: var(--text-primary);
  font-weight: 600;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--sky-blue), var(--sky-pink), var(--sky-green));
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  
  .hero-section h1 {
    font-size: 1.7rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin: 30px 0 20px;
  }
  
  .settings-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .use-cases-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .recording-container,
  .settings-container,
  .library-container {
    padding: 20px 15px;
  }
  
  .control-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .record-button, .pause-button, .stop-button {
    width: 100%;
    justify-content: center;
  }
  
  .recording-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .player-info {
    grid-template-columns: 1fr;
  }
  
  .modal-footer {
    flex-direction: column;
  }
  
  .quality-options,
  .format-options {
    gap: 8px;
  }
  
  .microphone-test {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .step-card, .use-case-card {
    padding: 20px 15px;
  }
  
  .recording-timer {
    font-size: 1.3rem;
  }
  
  #waveformCanvas {
    width: 100%;
    height: 60px;
  }
}