/**
 * Popup System Base Styles
 * Shared CSS for all popup windows (quotes, contracts, etc.)
 * Version: 1.0
 */

/* ==========================================================================
   Base Styles
   ========================================================================== */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 20px;
  background-color: #f9f9f9;
  margin: 0;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
  margin-top: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e5e5e5;
  font-size: 24px;
  color: #212529;
}

a {
  color: #0073aa;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.section {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 24px;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 16px;
  color: #0073aa;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

/* ==========================================================================
   Grid & Item Layouts
   ========================================================================== */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.label {
  font-size: 11px;
  font-weight: 500;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value {
  font-size: 13px;
  color: #212529;
  font-weight: 500;
  word-break: break-word;
}

/* ==========================================================================
   Color Utilities
   ========================================================================== */

.red {
  color: #dc3545;
  font-weight: 600;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */

.actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 2px solid #e5e5e5;
  margin-top: 24px;
}

.btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background-color: #0073aa;
  color: #fff;
  border-color: #0073aa;
}

.btn-primary:hover:not(:disabled) {
  background-color: #005177;
  border-color: #005177;
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
  border-color: #6c757d;
}

.btn-secondary:hover:not(:disabled) {
  background-color: #5a6268;
}

.btn-error {
  background-color: #dc3545;
  color: #fff;
  border-color: #dc3545;
}

.btn-error:hover:not(:disabled) {
  background-color: #c9302c;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.hidden {
  display: none;
}

/* ==========================================================================
   Pricing Display
   ========================================================================== */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.price-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px;
}

.price-label {
  font-size: 11px;
  font-weight: 500;
  color: #6c757d;
}

.price-value {
  font-size: 16px;
  font-weight: 600;
  color: #0073aa;
  margin-top: 4px;
}

/* ==========================================================================
   Notes Section
   ========================================================================== */

.notes {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 16px;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 13px;
}

.notes-container {
  position: relative;
}

.notes-edit-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 8px;
  font-size: 11px;
  background: #6c757d;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.notes-edit-btn:hover {
  background: #5a6268;
}

.notes-textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px;
  border: 1px solid #0073aa;
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
}

.notes-actions {
  margin-top: 8px;
  display: flex;
  gap: 8px;
}

.notes-save-btn,
.notes-cancel-btn {
  padding: 6px 12px;
  font-size: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.notes-save-btn {
  background: #0073aa;
  color: #fff;
}

.notes-save-btn:hover {
  background: #005a87;
}

.notes-cancel-btn {
  background: #6c757d;
  color: #fff;
}

.notes-cancel-btn:hover {
  background: #5a6268;
}

.notes-message {
  font-size: 12px;
  margin-top: 8px;
  padding: 8px;
  border-radius: 4px;
}

.notes-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.notes-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.attribution {
  font-size: 10px;
  color: #6c757d;
  margin-top: 8px;
  font-style: italic;
}

/* ==========================================================================
   Document Icons (Contracts)
   ========================================================================== */

.documents {
  font-size: 13px;
  line-height: 1.8;
}

.icon-document {
  width: 32px;
  height: 32px;
  display: inline-block;
  background-size: contain;
  cursor: pointer;
  transition: transform 0.2s;
  margin: 0 8px;
}

.icon-document:hover {
  transform: scale(1.1);
}

/* Document type icons - dynamically set via plugin URL in JS */
.adhesion-colour,
.black-colour,
.dkv-colour,
.asisa-colour,
.sanitas-colour,
.adeslas-colour,
.salusglobal-colour,
.upload-colour {
  background-repeat: no-repeat;
  background-position: center center;
}

/* ==========================================================================
   Tab Navigation (Quotes)
   ========================================================================== */

.tab-navigation {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 16px;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}

.tab-btn:hover {
  background: #f5f5f5;
}

.tab-btn.active {
  border-bottom-color: #0073aa;
  color: #0073aa;
}

.tab-content.hidden {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ==========================================================================
   Manual Approval Section (Quotes)
   ========================================================================== */

.manual-approval-section {
  min-height: 400px;
}

.approval-loading,
.approval-error {
  padding: 20px;
  text-align: center;
}

/* Approval Table */
.approval-table-container {
  margin-bottom: 20px;
}

.approval-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.approval-table thead {
  background: #f5f5f5;
  position: sticky;
  top: 0;
  z-index: 10;
}

.approval-table th {
  padding: 10px 8px;
  text-align: left;
  font-weight: 600;
  color: #23282d;
  border-bottom: 2px solid #ddd;
  font-size: 12px;
}

.approval-table td {
  padding: 8px;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: middle;
}

.approval-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.approval-table tbody tr:hover {
  background: #f0f7ff;
}

.approval-table tbody tr.approved {
  background: #f0f9f0;
}

/* Column-specific styles */
.approval-table .insurer-col {
  font-weight: 600;
  color: #23282d;
  width: 18%;
}

.approval-table .calc-price-col {
  width: 20%;
}

.approval-table .custom-price-col {
  width: 14%;
}

.approval-table .note-col {
  width: 33%;
}

.approval-table .actions-col {
  width: 15%;
  text-align: center;
}

.insurer-checkmark {
  color: #28a745;
  font-weight: 700;
  margin-left: 6px;
  font-size: 16px;
}

/* Calculated price display */
.calc-price-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.calc-price-value {
  font-weight: 600;
  color: #0073aa;
}

.calc-price-value.no-calc {
  color: #999;
  font-style: italic;
  font-weight: normal;
}

.use-calc-btn {
  padding: 4px 12px;
  font-size: 11px;
  background: #6c757d;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
}

.use-calc-btn:hover:not(:disabled) {
  background: #5a6268;
}

.use-calc-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Input fields */
.approval-table input[type="number"] {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 13px;
}

.approval-table textarea {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 12px;
  resize: vertical;
  min-height: 50px;
}

.approval-table input[type="number"]:disabled,
.approval-table textarea:disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
  border-color: #ddd;
}

/* Action buttons */
.approval-table .approve-btn,
.approval-table .unapprove-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 75px;
}

.approval-table .approve-btn {
  background: #5cb85c;
  color: #fff;
}

.approval-table .approve-btn:hover {
  background: #4cae4c;
}

.approval-table .approve-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.approval-table .unapprove-btn {
  background: #d9534f;
  color: #fff;
}

.approval-table .unapprove-btn:hover {
  background: #c9302c;
}

/* Footer */
.manual-quote-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 2px solid #e5e5e5;
  margin-top: 10px;
}

.approval-summary {
  font-size: 14px;
}

.approval-count-badge {
  display: inline-block;
  padding: 6px 12px;
  background: #f5f5f5;
  border-radius: 4px;
}

.send-quote-btn {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.2s, border-color 0.2s;
}

/* Step status */
.step-status-line {
  font-size: 13px;
  color: #6c757d;
  margin-top: 8px;
  padding-left: 8px;
}

.step-status-line.status-not-sent {
  color: #dc3545;
  font-weight: 600;
}

.step-status-line.status-sent {
  color: #28a745;
}

.restart-info {
  font-size: 12px;
  color: #6c757d;
  margin-left: 4px;
}

/* ==========================================================================
   Reject Tab (Quotes)
   ========================================================================== */

#reject-tab h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 18px;
  color: #dc3545;
}

.reject-message-container {
  width: 80%;
  margin-bottom: 16px;
}

.reject-message-container label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rejection-message-textarea {
  width: 100%;
  min-height: 200px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  line-height: 1.5;
  resize: vertical;
  box-sizing: border-box;
}

.rejection-message-textarea:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.reject-buttons {
  display: flex;
  gap: 12px;
}

.btn-reject-silent {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  background: #6c757d;
  color: #fff;
  border: 1px solid #6c757d;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.btn-reject-silent:hover:not(:disabled) {
  background: #5a6268;
  border-color: #545b62;
}

.btn-reject-silent:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-reject-send {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  background: #dc3545;
  color: #fff;
  border: 1px solid #dc3545;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.btn-reject-send:hover:not(:disabled) {
  background: #c82333;
  border-color: #bd2130;
}

.btn-reject-send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ==========================================================================
   Modal Styles (Contracts)
   ========================================================================== */

.contract-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.contract-popup-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.contract-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.contract-popup-close:hover {
  color: #333;
}

/* ==========================================================================
   Message States
   ========================================================================== */

.message {
  padding: 12px;
  border-radius: 4px;
  margin: 12px 0;
  font-size: 13px;
}

.message.info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message.warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

/* ==========================================================================
   Contract-Specific Styles
   ========================================================================== */

/* Badges */
.badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
  margin-left: 8px;
}

.badge-deleted {
  background-color: #dc3545;
  color: #fff;
}

/* Section variants */
.section-no-title {
  padding: 16px;
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  margin-bottom: 24px;
}

.section-description {
  color: #6c757d;
  font-size: 13px;
  margin-bottom: 16px;
}

.section-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

/* Status area */
.status-current {
  margin-bottom: 12px;
}

.label-small {
  font-size: 11px;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-message {
  margin-top: 12px;
  padding: 8px;
  border-radius: 4px;
  font-size: 12px;
}

.status-message.info {
  background-color: #d1ecf1;
  color: #0c5460;
}

.status-message.success {
  background-color: #d4edda;
  color: #155724;
}

.status-message.error {
  background-color: #f8d7da;
  color: #721c24;
}

/* Status Funnel */
.status-funnel {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background-color: #fff;
  display: inline-block;
  transition: all 0.2s;
}

.status-dot.filled {
  background-color: #6c757d;
  border-color: #6c757d;
}

.status-dot.success {
  background-color: #28a745;
  border-color: #28a745;
}

.status-dot.pending {
  background-color: #ffc107;
  border-color: #ffc107;
}

.status-dot.failed {
  background-color: #dc3545;
  border-color: #dc3545;
}

.status-dot.sin-effecto {
  background-color: #9c27b0;
  border-color: #9c27b0;
}

.status-dot.clickable {
  cursor: pointer;
}

.status-dot.clickable:hover {
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(0, 115, 170, 0.4);
}

/* Container-specific dot styles */
.status-dot.container-cancellation-requested.failed {
  background-color: #dc3545;
  border-color: #dc3545;
}

.status-dot.container-cancelled.filled {
  background-color: #999;
  border-color: #999;
  opacity: 0.6;
}

.status-dot.container-sin-effecto.sin-effecto {
  background-color: #9c27b0;
  border-color: #9c27b0;
  opacity: 0.85;
}

.status-label {
  font-size: 13px;
  font-weight: 500;
  color: #212529;
}

.status-label.danger {
  color: #dc3545;
  font-weight: 600;
}

.status-label.muted {
  color: #999;
}

.status-label.purple {
  color: #4a148c;
  font-weight: 600;
}

/* Cancellation Actions */
.cancellation-actions {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.link-success {
  color: #28a745;
  font-size: 12px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.link-success:hover {
  text-decoration: underline;
}

.link-danger {
  color: #dc3545;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.link-danger:hover {
  text-decoration: underline;
}

.link-warning {
  color: #ff9800;
  font-size: 12px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.link-warning:hover {
  text-decoration: underline;
}

/* Edit Icon */
.edit-icon {
  width: 14px;
  height: 14px;
  margin-left: 8px;
  cursor: pointer;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.edit-icon:hover {
  color: #0073aa;
}

/* Applicant Cards */
.applicant-card {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 12px;
}

.applicant-card-title {
  font-weight: 600;
  color: #0073aa;
  margin-bottom: 8px;
}

/* Payment Cards */
.payment-card {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 16px;
}

.payment-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e5e5;
}

.payment-amount {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}

.payment-status {
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-card-actions {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f5f5f5;
  display: flex;
  gap: 8px;
}

/* Documents Section */
.documents {
  font-size: 13px;
  line-height: 1.8;
}

.icon-document {
  width: 32px;
  height: 32px;
  display: inline-block;
  background-size: contain;
  cursor: pointer;
  transition: transform 0.2s;
  margin: 0 8px;
}

.icon-document:hover {
  transform: scale(1.1);
}

/* Document icons - will be set via background-image in inline styles or via classes */
.adhesion-colour,
.black-colour,
.dkv-colour,
.asisa-colour,
.sanitas-colour,
.adeslas-colour,
.salusglobal-colour,
.upload-colour {
  /* Background images will be set dynamically */
}

/* Action Buttons */
.actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 2px solid #e5e5e5;
  margin-top: 24px;
}

.icon-inline {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Modal Overlays and Content */
.modal-overlay {
  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: 10000;
}

.modal-overlay.modal-large .modal-content {
  max-width: 600px;
}

.modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  width: 450px;
  max-width: 90vw;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-content h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
}

.text-muted {
  color: #6c757d;
  font-size: 13px;
}

.text-purple {
  color: #4a148c;
  font-weight: 500;
}

.text-danger {
  color: #dc3545;
  font-weight: 600;
}

/* Form Elements */
.form-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 12px;
}

.form-input:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.form-input.disabled-purple {
  background-color: #f3e5f5;
  border-color: #9c27b0;
}

.form-checkbox {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-checkbox input[type="checkbox"] {
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.form-checkbox label {
  cursor: pointer;
  font-size: 13px;
  margin: 0;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 13px;
  color: #212529;
}

.form-group small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}

.form-group textarea {
  resize: vertical;
  min-height: 60px;
}

.form-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
  cursor: pointer;
}

.form-group input[type="number"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

/* Modal Actions */
.modal-actions {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-top: 20px;
}

.modal-actions button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.2s;
}

/* Button Variants */
.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

.btn-success {
  background-color: #28a745;
  color: #fff;
  border-color: #28a745;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-warning {
  background-color: #ff9800;
  color: #fff;
  border-color: #ff9800;
}

.btn-warning:hover {
  background-color: #e68900;
  border-color: #d68000;
}

.btn-danger {
  background-color: #dc3545;
  color: #fff;
  border-color: #dc3545;
}

.btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}
