body {
  background: #eef2dc;
}

.logo {
  height: 40px;
}

/* Mobile (default) */
.form-container {
  max-width: 95%;
  margin: 20px auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
  .form-container {
    max-width: 520px;
    margin-top: 50px;
    padding: 32px;
    border-radius: 14px;
  }
}

/* Large Desktop (optional, premium feel) */
@media (min-width: 1200px) {
  .form-container {
    max-width: 620px;
    padding: 40px;
  }
}

.required-asterisk{
    color: #ff0000;
    font-size: 20px;
}

.asterisk-small{
    color: #ff0000;
    
}

/* Receipt thumbnail */
.receipt-preview {
  position: relative;
  width: 120px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.receipt-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover overlay */
.preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.receipt-preview:hover .preview-overlay {
  opacity: 1;
}

/* Fullscreen modal */
.receipt-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.receipt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.receipt-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.receipt-modal-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
}

.close-btn {
  margin-top: 10px;
}

.google-sans-regular {
  font-family: "Google Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "GRAD" 0;
}


.guide-notes {
  background-color: #e7f3fe;
  border-left: 5px solid #2196F3;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 100%;
}

.guide-notes h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #0b5394;
}

.guide-notes ol {
  padding-left: 20px;
  margin: 0;
}

.guide-notes li {
  margin-bottom: 8px;
}

.guide-notes .note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #0b5394;
  font-style: italic;
}
