/* Installation Tracking System Styles */

/* Base styles */
body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f5f5f5;
    color: #000;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Form elements */
  input, select, textarea, button {
    margin: 5px 0;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #000;
  }

  textarea {
    resize: vertical;
    min-height: 60px;
  }

  /* Panel and form sections */
  .panel {
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .form-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  /* Typography */
  h1, h2, h3, p, label, div {
    color: #000;
  }

  h2 {
    color: #000;
  }

  h3 {
    color: #000;
    margin-top: 20px;
  }

  /* Buttons */
  button {
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    transition: background-color 0.3s;
  }

  button:hover {
    background-color: #45A049;
  }

  button.secondary {
    background-color: #2196F3;
  }

  button.secondary:hover {
    background-color: #0b7dda;
  }

  button.btn-payment {
    background-color: #ff9500;
    color: white;
  }

  button.btn-payment:hover {
    background-color: #e6860c;
  }

  button.danger {
    background-color: #f44336;
  }

  button.danger:hover {
    background-color: #d32f2f;
  }

  /* Messages */
  #message {
    font-weight: bold;
    color: green;
    margin: 10px 0;
  }

  #error {
    font-weight: bold;
    color: red;
    margin: 10px 0;
  }

  /* QR Scanner styles */
  #qr-reader {
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto;
    position: relative;
    padding: 0 !important;
    border: none !important;
  }

  #qr-reader video {
    width: 100% !important;
    height: auto !important;
    border-radius: 10px;
  }

  #qr-reader__scan_region {
    position: relative;
    min-height: 300px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
  }

  #qr-reader__scan_region img {
    display: none;
  }

  #qr-reader__dashboard {
    padding: 10px !important;
    margin-top: 10px !important;
    background: #f5f5f5 !important;
    border-radius: 10px !important;
  }

  #qr-reader__dashboard button {
    padding: 8px 15px !important;
    background: #4CAF50 !important;
    color: white !important;
    border: none !important;
    border-radius: 5px !important;
    cursor: pointer !important;
  }

  #qr-reader__dashboard select {
    padding: 8px !important;
    margin: 5px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
  }

  .scanning-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border: 3px solid #4CAF50;
    border-radius: 20px;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .scanning-area::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-top: 3px solid #4CAF50;
    border-left: 3px solid #4CAF50;
    top: -3px;
    left: -3px;
  }

  .scanning-area::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-bottom: 3px solid #4CAF50;
    border-right: 3px solid #4CAF50;
    bottom: -3px;
    right: -3px;
  }

  .scanning-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #4CAF50;
    top: 50%;
    animation: scan 2s linear infinite;
  }

  @keyframes scan {
    0% {
      transform: translateY(-100px);
    }
    50% {
      transform: translateY(100px);
    }
    100% {
      transform: translateY(-100px);
    }
  }

  .qr-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
  }

  .qr-success {
    background-color: #e8f5e9;
    color: #2e7d32;
  }

  .qr-error {
    background-color: #ffebee;
    color: #c62828;
  }

  .qr-instructions {
    background-color: #e3f2fd;
    color: #1565c0;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
  }

  /* PDF Preview styles */
  .pdf-preview {
    width: 100%;
    height: 500px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

  .pdf-button {
    display: inline-block;
    background-color: #2196F3;
    color: white;
    padding: 8px 15px;
    margin: 10px 5px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
  }

  .pdf-button:hover {
    background-color: #0b7dda;
  }

  /* Loader */
  .loader {
    display: none;
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Form layout */
  .form-group {
    margin: 10px 0;
  }

  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  .form-group label .required {
    color: red;
    margin-left: 3px;
  }

  .two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .two-column .form-group {
    flex: 1 1 45%;
  }

  /* Images */
  .preview-image {
    max-width: 150px;
    max-height: 150px;
    margin: 5px;
    object-fit: cover;
    border-radius: 4px;
  }

  .image-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  /* Admin controls */
  .admin-controls {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
  }

  /* Tab navigation */
  .tab-buttons {
    display: flex;
    margin-bottom: 20px;
  }

  .tab-button {
    padding: 10px 15px;
    background-color: #ddd;
    border: none;
    margin-right: 5px;
    cursor: pointer;
    color: black;
  }

  .tab-button.active {
    background-color: #4CAF50;
    color: black;
  }

  .tab-content {
    display: none;
  }

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

  /* Installation list */
  #installations-list {
    margin-top: 20px;
  }

  .installation-item {
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: background-color 0.2s;
  }

  .installation-item:hover {
    background-color: #f0f0f0;
  }

  /* Quick actions for orders */
  .quick-actions {
    flex-shrink: 0;
  }

  .quick-actions select,
  .quick-actions button {
    cursor: pointer;
  }

  .quick-status-change {
    background-color: white;
    border: 1px solid #ccc;
    color: #333;
  }

  .quick-status-change:hover {
    border-color: #2196F3;
    background-color: #f8f9fa;
  }

  .quick-convert-btn {
    transition: all 0.2s;
  }

  .quick-convert-btn:hover {
    background-color: #45a049 !important;
    transform: translateX(2px);
  }

  .order-info-section {
    cursor: pointer !important;
  }

  /* Responsive design for quick actions */
  @media (max-width: 768px) {
    .installation-item > div {
      flex-direction: column !important;
      align-items: flex-start !important;
    }

    .quick-actions {
      width: 100%;
      margin-top: 10px;
      flex-direction: column !important;
    }

    .quick-status-change,
    .quick-convert-btn {
      width: 100%;
    }
  }

  /* Status badges for installations */
  .status-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    margin-left: 5px;
  }

  .status-planned {
    background-color: #2196F3; /* Blue */
  }

  .status-in-progress {
    background-color: #FF9800; /* Orange */
  }

  .status-completed {
    background-color: #4CAF50; /* Green */
  }

  .status-cancelled {
    background-color: #f44336; /* Red */
  }

  /* Modal styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }

  .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
  }

  .close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .close-modal:hover,
  .close-modal:focus {
    color: black;
    text-decoration: none;
  }

  .detail-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }

  .detail-row {
    display: flex;
    margin-bottom: 8px;
  }

  .detail-label {
    flex: 0 0 180px;
    font-weight: bold;
  }

  .detail-value {
    flex: 1;
  }

  .photos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
  }

  .detail-photo {
    max-width: 200px;
    max-height: 150px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .detail-photo:hover {
    transform: scale(1.05);
  }

  /* Edit buttons */
  .edit-controls {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    gap: 10px;
  }

  .btn-edit {
    background-color: #2196F3;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .btn-delete {
    background-color: #f44336;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .btn-save {
    background-color: #4CAF50;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .btn-cancel {
    background-color: #9e9e9e;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  /* Edit mode visibility */
  .edit-mode .view-only {
    display: none;
  }

  .view-mode .edit-only {
    display: none;
  }

  .edit-field {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

  /* Orders section specific styles */
  #orders-content {
    display: none;
  }

  #orders-content.active {
    display: block;
  }

  #orders-content .orders-tab-buttons {
    margin-top: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    gap: 5px;
  }

  #orders-content .orders-tab-button {
    padding: 10px 20px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    color: black;
  }

  #orders-content .orders-tab-button.active {
    background-color: #4CAF50;
    color: black;
    border-color: #4CAF50;
  }

  #orders-content .orders-tab-content {
    display: none;
    padding: 20px 0;
  }

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

  /* Responsive design */
  @media (max-width: 768px) {
    .two-column .form-group {
      flex: 1 1 100%;
    }
  }
/* Installation Tracking System Styles */

/* Base styles */
body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: #f5f5f5;
  color: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Form elements */
input, select, textarea, button {
  margin: 5px 0;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #000;
}

textarea {
  resize: vertical;
  min-height: 60px;
}

/* Panel and form sections */
.panel {
  background-color: white;
  border: 1px solid #ccc;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-section {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

/* Typography */
h1, h2, h3, p, label, div {
  color: #000;
}

h2 {
  color: #000;
}

h3 {
  color: #000;
  margin-top: 20px;
}

/* Buttons */
button {
  cursor: pointer;
  background-color: #4CAF50;
  color: white;
  border: none;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #45A049;
}

button.secondary {
  background-color: #2196F3;
}

button.secondary:hover {
  background-color: #0b7dda;
}

button.danger {
  background-color: #f44336;
}

button.danger:hover {
  background-color: #d32f2f;
}

/* Messages */
#message {
  font-weight: bold;
  color: green;
  margin: 10px 0;
}

#error {
  font-weight: bold;
  color: red;
  margin: 10px 0;
}

/* QR Scanner styles */
#qr-reader {
  width: 100% !important;
  max-width: 600px !important;
  margin: 0 auto;
  position: relative;
  padding: 0 !important;
  border: none !important;
}

#qr-reader video {
  width: 100% !important;
  height: auto !important;
  border-radius: 10px;
}

#qr-reader__scan_region {
  position: relative;
  min-height: 300px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

#qr-reader__scan_region img {
  display: none;
}

#qr-reader__dashboard {
  padding: 10px !important;
  margin-top: 10px !important;
  background: #f5f5f5 !important;
  border-radius: 10px !important;
}

#qr-reader__dashboard button {
  padding: 8px 15px !important;
  background: #4CAF50 !important;
  color: white !important;
  border: none !important;
  border-radius: 5px !important;
  cursor: pointer !important;
}

#qr-reader__dashboard select {
  padding: 8px !important;
  margin: 5px !important;
  border: 1px solid #ddd !important;
  border-radius: 5px !important;
}

.scanning-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border: 3px solid #4CAF50;
  border-radius: 20px;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.scanning-area::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-top: 3px solid #4CAF50;
  border-left: 3px solid #4CAF50;
  top: -3px;
  left: -3px;
}

.scanning-area::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-bottom: 3px solid #4CAF50;
  border-right: 3px solid #4CAF50;
  bottom: -3px;
  right: -3px;
}

.scanning-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #4CAF50;
  top: 50%;
  animation: scan 2s linear infinite;
}

@keyframes scan {
  0% {
    transform: translateY(-100px);
  }
  50% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(-100px);
  }
}

.qr-message {
  margin-top: 15px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

.qr-success {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.qr-error {
  background-color: #ffebee;
  color: #c62828;
}

.qr-instructions {
  background-color: #e3f2fd;
  color: #1565c0;
  padding: 15px;
  border-radius: 5px;
  margin: 10px 0;
}

/* PDF Preview styles */
.pdf-preview {
  width: 100%;
  height: 500px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.pdf-button {
  display: inline-block;
  background-color: #2196F3;
  color: white;
  padding: 8px 15px;
  margin: 10px 5px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.pdf-button:hover {
  background-color: #0b7dda;
}

/* Loader */
.loader {
  display: none;
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #3498db;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Form layout */
.form-group {
  margin: 10px 0;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group label .required {
  color: red;
  margin-left: 3px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.two-column .form-group {
  flex: 1 1 45%;
}

/* Images */
.preview-image {
  max-width: 150px;
  max-height: 150px;
  margin: 5px;
  object-fit: cover;
  border-radius: 4px;
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Admin controls */
.admin-controls {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

/* Tab navigation */
.tab-buttons {
  display: flex;
  margin-bottom: 20px;
}

.tab-button {
  padding: 10px 15px;
  background-color: #ddd;
  border: none;
  margin-right: 5px;
  cursor: pointer;
  color: black;
}

.tab-button.active {
  background-color: #4CAF50;
  color: black;
}

.tab-content {
  display: none;
}

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

/* Installation list */
#installations-list {
  margin-top: 20px;
}

.installation-item {
  padding: 15px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.installation-item:hover {
  background-color: #f0f0f0;
}

/* Status badges for installations */
.status-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  color: white;
  margin-left: 5px;
}

.status-planned {
  background-color: #2196F3; /* Blue */
}

.status-in-progress {
  background-color: #FF9800; /* Orange */
}

.status-completed {
  background-color: #4CAF50; /* Green */
}

.status-cancelled {
  background-color: #f44336; /* Red */
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 8px;
  width: 80%;
  max-width: 900px;
  max-height: 80vh;
  overflow-y: auto;
}

.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
  color: black;
  text-decoration: none;
}

.detail-section {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.detail-row {
  display: flex;
  margin-bottom: 8px;
}

.detail-label {
  flex: 0 0 180px;
  font-weight: bold;
}

.detail-value {
  flex: 1;
}

.photos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.detail-photo {
  max-width: 200px;
  max-height: 150px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}

.detail-photo:hover {
  transform: scale(1.05);
}

/* Edit buttons */
.edit-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 10px;
}

.btn-edit {
  background-color: #2196F3;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-delete {
  background-color: #f44336;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-save {
  background-color: #4CAF50;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-cancel {
  background-color: #9e9e9e;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Edit mode visibility */
.edit-mode .view-only {
  display: none;
}

.view-mode .edit-only {
  display: none;
}

.edit-field {
  width: 100%;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Orders section specific styles */
#orders-content {
  display: none;
}

#orders-content.active {
  display: block;
}

#orders-content .orders-tab-buttons {
  margin-top: 20px;
  border-bottom: 1px solid #ddd;
  display: flex;
  gap: 5px;
}

#orders-content .orders-tab-button {
  padding: 10px 20px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  cursor: pointer;
  color: black;
}

#orders-content .orders-tab-button.active {
  background-color: #4CAF50;
  color: black;
  border-color: #4CAF50;
}

#orders-content .orders-tab-content {
  display: none;
  padding: 20px 0;
}

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

/* Marketing Data Styles */
.stat-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-card h4 {
  margin: 0 0 10px 0;
  color: #666;
  font-size: 14px;
  font-weight: normal;
}

.stat-number {
  font-size: 24px;
  font-weight: bold;
  color: #2196F3;
}

.marketing-record {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.marketing-record-header {
  display: flex;
  justify-content: between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.marketing-record-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.marketing-meta-item {
  display: flex;
  flex-direction: column;
}

.marketing-meta-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 2px;
}

.marketing-meta-value {
  font-weight: bold;
  color: #333;
}

.marketing-status {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.marketing-status.active {
  background-color: #e8f5e8;
  color: #2e7d2e;
}

.marketing-status.used {
  background-color: #e3f2fd;
  color: #1565c0;
}

.marketing-status.unsubscribed {
  background-color: #ffebee;
  color: #c62828;
}

.order-status {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.order-status.completed {
  background-color: #e8f5e8;
  color: #2e7d2e;
}

.order-status.pending {
  background-color: #fff3e0;
  color: #ef6c00;
}

.order-status.abandoned {
  background-color: #ffebee;
  color: #c62828;
}

.marketing-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.marketing-actions button {
  font-size: 12px;
  padding: 6px 12px;
}

.description {
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
  .two-column .form-group {
    flex: 1 1 100%;
  }

  .marketing-record-meta {
    grid-template-columns: 1fr;
  }

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

  .marketing-actions button {
    width: 100%;
  }
}
