/* Cookie Consent Modal - Receipt Styled */

.consent-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.consent-modal.visible {
  display: flex;
}

.consent-content {
  background: #fff;
  max-width: 600px;
  width: 100%;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px dashed #999;
  font-family: 'Courier New', Courier, monospace;
  max-height: 90vh;
  overflow-y: auto;
  padding:1.8rem;
}

.consent-header {
  text-align: center;
  border-bottom: 1px dashed #999;
  padding: 30px 30px 20px 30px;
  border-top: 3px solid #333;
}

.consent-header::before {
  content: '###############################################';
  display: block;
  font-size: 10px;
  letter-spacing: -1px;
  color: #333;
  margin-bottom: 20px;
  overflow: hidden;
}

.consent-title {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.consent-description {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

.consent-body {
  padding: 30px;
  text-align:center;
}

.consent-section {
  margin-bottom: 20px;
}

.consent-section-title {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #333;
}

.consent-section-desc {
  font-size: 11px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.consent-option {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px dashed #ddd;
  background: rgba(0, 0, 0, 0.02);
}

.consent-option input{
    width:auto;
}

.consent-option input[type="checkbox"] {
  margin-right: 10px;
  cursor: pointer;
  filter: greyscale;
  :webkit-filter: greyscale;
  -moz-filter: greyscale;
}

.consent-option input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

.consent-option-label {
  font-size: 11px;
  flex: 1;
}

.consent-option-name {
  font-weight: bold;
  display: block;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.consent-option-desc {
  color: #666;
}

.consent-actions {
  padding: 20px 30px 30px 30px;
  text-align: center;
  border-top: 1px dashed #999;
}

.consent-primary-btn {
}

.consent-primary-btn:hover {
}

.consent-links {
  margin-top: 1rem;
  font-size: 11px;
  color: #666;
}

.consent-links a {
  margin: 0 10px;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-style: dashed;
  letter-spacing: 0px;
  transition: letter-spacing 0.2s ease;
}

.consent-links a:hover {
  letter-spacing: 2px;
}



#consent-custom {
  display: none;
}

/* Footer styling matching receipt-footer */
.consent-footer {
  border-top: 1px dashed #999;
  border-bottom: 3px solid #333;
  padding: 20px 30px 30px 30px;
  text-align: center;
}

.consent-footer::after {
  content: '###############################################';
  display: block;
  font-size: 10px;
  letter-spacing: -1px;
  color: #333;
  margin-top: 20px;
  overflow: hidden;
}

/* Responsive padding - match receipt.css behavior */
@media (max-width: 460px) {
  .consent-content{
    padding:1rem;
  }
}

@media (max-width: 340px) {
  .consent-content{
    padding-left:0;
    padding-right:0;
  }
}