
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: white;
    min-height: 100vh;
    position: relative;
}

header {
    width: 100%;
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 1rem;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

h2 {
    color: #37358F;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
}

/* Instruction Placeholders */
.instructions-placeholder {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.instructions-placeholder p {
    margin: 0.5rem 0;
}

/* Email Section */
#emailForm {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

#emailInput {
    padding: 0.75rem;
    border: 1px solid #F78C3E;
    border-radius: 4px;
    width: 100%;
    max-width: 300px;
    font-size: 1rem;
}

.submit-button {
    padding: 0.75rem 2rem;
    background: #37358F;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.submit-button:hover {
    background: #2a2870;
}

/* Loading Section */
.loading-content {
    text-align: center;
    padding: 3rem 0;
}

.loading-dog {
    max-width: 150px;
    height: auto;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Customer Info */
.customer-info {
    background: #f8f8f8;
    border: 1px solid #F78C3E;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.customer-info h3 {
    margin: 0;
    color: #37358F;
}

.subscriber-badge {
    display: inline-block;
    background: #FFD700;
    color: #37358F;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-left: 1rem;
}

/* Orders Table */
.orders-container {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: #37358F;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 500;
}

td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

tr:hover {
    background: #f8f8f8;
}

.order-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.date-link {
    color: #F78C3E;
    text-decoration: none;
    font-weight: 500;
}

.date-link:hover {
    text-decoration: underline;
}

/* Status Classes */
.status-ready {
    color: #28a745;
    font-weight: 500;
}

.status-processing {
    color: #ffc107;
    font-weight: 500;
}

.status-picked-up {
    color: #6c757d;
    font-weight: 500;
}

.status-not-available {
    color: #dc3545;
    font-weight: 500;
}

.status-prepping {
    color: #17a2b8;
    font-weight: 500;
}

.status-mailed {
    color: #6c757d;
    font-weight: 500;
}

/* Floating Continue Button */
.floating-continue {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid #F78C3E;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.selection-count {
    font-size: 1rem;
    color: #37358F;
    font-weight: 500;
}

.continue-button {
    padding: 0.75rem 2rem;
    background: #F78C3E;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-weight: 500;
}

.continue-button:hover:not(:disabled) {
    background: #C34917;
}

.continue-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modals */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

/* Order Summary */
.order-summary {
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    max-height: 200px;
    overflow-y: auto;
}

.summary-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
    border-bottom: none;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-button {
    padding: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.pickup-button {
    background: #F78C3E;
    color: white;
}

.pickup-button:hover:not(:disabled) {
    background: #C34917;
}

.prints-button {
    background: #37358F;
    color: white;
}

.prints-button:hover:not(:disabled) {
    background: #2a2870;
}

.mailback-button {
    background: white;
    color: #F78C3E;
    border: 2px solid #F78C3E;
}

.mailback-button:hover {
    background: #F78C3E;
    color: white;
}

.action-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Error Message */
.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}

/* Date & Time Picker */
.pickup-scheduler {
    margin: 2rem 0;
}

.schedule-note {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.date-picker {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.date-option {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.date-option:hover {
    border-color: #F78C3E;
}

.date-option.selected {
    background: #F78C3E;
    color: white;
    border-color: #F78C3E;
}

/* Time Picker */
.time-picker {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.time-option {
    padding: 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.time-option:hover {
    border-color: #37358F;
}

.time-option.selected {
    background: #37358F;
    color: white;
    border-color: #37358F;
}

.change-time-button {
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    background: white;
    color: #37358F;
    border: 2px solid #37358F;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.change-time-button:hover {
    background: #37358F;
    color: white;
}

/* Delivery Options */
.delivery-options {
    margin: 2rem 0;
    text-align: center;
}

.option-button {
    display: inline-block;
    width: 200px;
    margin: 0.5rem;
    padding: 1rem;
    background: white;
    color: #F78C3E;
    border: 2px solid #F78C3E;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-button:hover {
    background: #F78C3E;
    color: white;
}

.option-button.selected {
    background: #F78C3E;
    color: white;
}

/* Shipping Form */
.shipping-form {
    margin: 2rem 0;
}

.shipping-form input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #F78C3E;
    border-radius: 4px;
}

/* Mailback Cost */
.mailback-cost {
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    text-align: center;
}

.mailback-cost .note {
    color: #666;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Secondary Button */
.secondary-button {
    padding: 0.75rem 2rem;
    background: white;
    color: #F78C3E;
    border: 2px solid #F78C3E;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: #F78C3E;
    color: white;
}

/* Success Content */
.success-content {
    text-align: center;
}

.success-content h2 {
    color: #28a745;
}

/* Footer */
.footer {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
}

.footer img {
    max-width: 100px;
    height: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .orders-container {
        font-size: 0.875rem;
        overflow-x: auto;
    }
    
    th, td {
        padding: 0.5rem;
    }
    
    .date-picker {
        grid-template-columns: 1fr;
    }
    
    .time-picker {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .floating-continue {
        padding: 0.75rem 1rem;
    }
    
    .footer {
        display: none;
    }
}
