@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");


body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6; /* bg-gray-100 */
}

/* #modal-overlay {
  position: fixed !important;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999 !important;
} */

/* Custom styles for delivery request template */
.delivery-request-container {
    padding: 1.5rem;
    background-color: #f9fafb;
    min-height: 100vh;
}

.delivery-request-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.delivery-request-subtitle {
    color: #6b7280;
    margin-top: 0.25rem;
}

.delivery-request-card {
    padding: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.delivery-request-card-green {
    padding: 1rem;
    background-color: #f0fdf4;
    border-radius: 0.5rem;
    border: 1px solid #bbf7d0;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.delivery-request-card-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.delivery-request-card-value-green {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
}

.delivery-request-card-value-dark {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.delivery-request-section {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.delivery-request-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.delivery-request-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.delivery-request-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.delivery-request-input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: #111827;
}

.delivery-request-input:focus {
    outline: none;
    ring: 2px;
    ring-color: #3b82f6;
    border-color: transparent;
}

.delivery-request-textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: #111827;
    resize: none;
}

.delivery-request-textarea:focus {
    outline: none;
    ring: 2px;
    ring-color: #3b82f6;
    border-color: transparent;
}

.delivery-request-table-container {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.delivery-request-table {
    width: 100%;
}

.delivery-request-table-header {
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.delivery-request-table-header th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.delivery-request-table-body {
    border-top: 1px solid #e5e7eb;
}

.delivery-request-table-body tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.15s;
}

.delivery-request-table-body tr:hover {
    background-color: #f9fafb;
}

.delivery-request-table-body td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #111827;
}

.delivery-request-table-body td:first-child {
    font-weight: 500;
}

.delivery-request-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    background-color: #2563eb;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.delivery-request-button:hover {
    background-color: #1d4ed8;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.delivery-request-button:focus {
    outline: none;
    ring: 2px;
    ring-color: #3b82f6;
    ring-offset: 2px;
}

.delivery-request-back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
}

.delivery-request-back-button:hover {
    color: #111827;
    background-color: white;
    border-color: #9ca3af;
}

.delivery-request-back-button svg {
    width: 1rem;
    height: 1rem;
}

.delivery-request-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Admin pagination styling (rounded boxes, green active) */
.pagination, .paginator {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.pagination a, .pagination span,
.paginator a, .paginator span, .paginator .this-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 .5rem;
    border-radius: .5rem;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #6b7280;
    text-decoration: none;
    font-weight: 600;
}

.pagination a:hover, .paginator a:hover {
    border-color: #9ca3af;
    color: #374151;
}

/* Active/current page */
.pagination .active, .paginator .this-page {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

/* Disabled arrows or ellipsis */
.pagination .disabled, .paginator .disabled, .paginator .ellipsis, .pagination .ellipsis {
    background: #ffffff;
    color: #9ca3af;
    border-color: #e5e7eb;
}

/* Remove default top border/line from admin paginator containers */
.paginator {
    border-top: 0 !important;
    box-shadow: none !important;
    padding-top: 0.5rem;
}

/* Ensure right section sticks to the edge without extra borders */
.paginator .pagination-right {
    border: 0;
}

.paginator .pagination-left .pagination-info {
    border: 0;
}

/* Override gradient line from Unfold's scrollable helper */
.lg\:scrollable-top:after {
    background-image: none !important;
    content: none !important;
    height: 0 !important;
}

/* Fix submit button styles */
button[type="submit"], 
.submit-row button,
button.submit-row {
    background-color: #16a34a !important;
    color: white !important;
    border: 1px solid #16a34a !important;
}

button[type="submit"]:hover,
.submit-row button:hover,
button.submit-row:hover {
    background-color: #15803d !important;
    border-color: #15803d !important;
}

/* Ensure primary buttons have proper styling */
.bg-primary-600 {
    background-color: #16a34a !important;
}

.text-white {
    color: white !important;
}

/* Summary page buttons */
.summary-btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    padding: 0.75rem 1.5rem; 
    border-radius: 0.5rem; 
    font-size: 0.875rem; 
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 140px;
    height: 44px;
}

.summary-btn-primary { 
    background: #4285F4; 
    color: #fff; 
    border: none;
}
.summary-btn-primary:hover { 
    background: #3367D6; 
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
}

.summary-btn-neutral { 
    background: #fff; 
    border: 1px solid #E5E7EB; 
    color: #374151; 
}
.summary-btn-neutral:hover { 
    background: #F9FAFB; 
    border-color: #D1D5DB;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.summary-btn-success { 
    background: #5CB85C; 
    color: #fff; 
    border: none;
}
.summary-btn-success:hover { 
    background: #4CAF50; 
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(92, 184, 92, 0.3);
}

.summary-btn svg { 
    margin-right: 0.5rem; 
    height: 1.25rem; 
    width: 1.25rem; 
}

