body.home {
        /* This creates a glow in the center that fades into the charcoal edges */
        background: radial-gradient(circle at center, #1a2a29 0%, #121212 50%);
        background-attachment: fixed;
 
    }


.site-header {
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    background-color: #dddddd;
    display: flex;
    justify-content: center;
    align-items: center;
}


.gm-upload-previews {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}

.gm-upload-preview {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 8px;
  background: #fff;
}

.gm-upload-thumb {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.gm-upload-file {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0,0,0,0.04);
  font-size: 12px;
  padding: 8px;
  text-align: center;
}

.gm-upload-meta {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.2;
  word-break: break-word;
  opacity: 0.85;
}


.partial_entry_warning {
    display: none;
}

span.gform-conversational__field-nav-helper-text {
    display: none!important;
}


/* Portal Card Container */
.giant-portal-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Header: Badges */
.portal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.due-date-badge {
    background: #f3f4f6;
    padding: 5px 12px;
    border-radius: 20px;
    color: #374151;
}

.status-badge.in-progress { color: #d97706; background: #fffbeb; padding: 5px 12px; border-radius: 20px; font-weight:bold; }
.status-badge.new { color: #6b7280; background: #f3f4f6; padding: 5px 12px; border-radius: 20px; }

/* Body Area */
.portal-body h3 { margin-top: 0; margin-bottom: 5px; color: #111; }
.save-note { font-size: 0.85rem; color: #6b7280; margin-bottom: 15px; }

/* Progress Bar */
.giant-progress-bar-bg {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 25px;
    overflow: hidden;
}

.giant-progress-bar-fill {
    height: 100%;
    background: #2563eb; /* Blue Color */
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Button Styling */
.giant-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.giant-btn.continue { background: #2563eb; color: white; }
.giant-btn.continue:hover { background: #1d4ed8; }

.giant-btn.start { background: #111827; color: white; }
.giant-btn.start:hover { background: #000; }


/* Completed Badge */
.status-badge.completed { 
    color: #065f46; 
    background: #d1fae5; 
    padding: 5px 12px; 
    border-radius: 20px; 
    font-weight: bold; 
}

/* Completed Progress Bar */
.giant-progress-bar-fill.completed {
    background: #10b981; /* Green */
}

/* Disabled Button (Finished State) */
.giant-btn.disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: default;
    pointer-events: none; /* Prevents clicking */
    border: 1px solid #e5e7eb;
}


.container.branding {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 23px 0px;
}


footer.footer {
    background-color: #dddddd;
}

ul#menu-menu {
    display: flex;
    gap: 10px;
    list-style: none;
}

.giant-portal-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(37, 189, 173, 0.2);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    color: white;
}

.giant-progress-bar-bg {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    margin: 20px 0;
}

.giant-progress-bar-fill {
    background: #25bdad; /* Your Brand Teal */
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.giant-btn.continue {
    background: #25bdad;
    color: #121212;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    display: inline-block;
}

.gform-conversational.gform-theme--framework .form_saved_message>h2, .gform-conversational.gform-theme--framework .form_saved_message_sent>:where(:not(.gform_validation_errors)):first-child {
  font-size: 2rem;
  font-weight: 700;
}

.gform-conversational.gform-theme--framework .form_saved_message>:where(:not(.gform_validation_errors)) {
  font-size: 1rem;
}

.gform-conversational .gform-theme--framework .gform-field-label:where(:not(.gfield_header_item):not(.ginput_quantity_label)) {
  font-size: 1.125rem;
  font-weight: 600;
}

.form_saved_message_sent {
    text-align: center;
}