/* DomoReso - Gestione Resi */

/* ---- Tile My Account ---- */
.domoreso-myaccount-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 24px 16px;
  text-align: center;
  color: #333;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  min-height: 110px;
  width: 100%;
}
.domoreso-myaccount-tile:hover {
  background: #eef4ff;
  border-color: #0057b8;
  color: #0057b8;
  text-decoration: none;
}
.domoreso-myaccount-tile .material-icons {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #0057b8;
}
.domoreso-myaccount-tile span {
  font-size: 0.85rem;
}

/* ---- Box pulsante nella pagina ordine ---- */
.domoreso-box {
  border: 1px solid #f0ad4e;
  border-radius: 6px;
  background: #fff8ee;
  padding: 16px 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.domoreso-box .domoreso-info {
  margin: 0;
  flex: 1;
}

.domoreso-btn {
  white-space: nowrap;
}

.domoreso-form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.domoreso-legal {
  border-left: 4px solid #17a2b8 !important;
}

.domoreso-success {
  padding: 40px;
  border-radius: 8px;
}

.domoreso-success .material-icons {
  color: #28a745;
  display: block;
  margin-bottom: 10px;
}

.domoreso-list table th {
  background: #f8f9fa;
}

.domoreso-field-error {
  display: block;
  margin-top: 4px;
}

.domoreso-char-counter {
  display: block;
  text-align: right;
  margin-top: 4px;
}

@media (max-width: 576px) {
  .domoreso-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
