/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-blue: #2C5282;
    --primary-blue-light: #4A90E2;
    --primary-blue-dark: #1A365D;

    /* Secondary Colors */
    --success-green: #2F855A;
    --success-green-light: #48BB78;

    /* Neutral Colors */
    --gray-50: #F7FAFC;
    --gray-100: #EDF2F7;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E0;
    --gray-600: #4A5568;
    --gray-800: #2D3748;
    --gray-900: #1A202C;

    /* Semantic Colors */
    --warning-yellow: #D69E2E;
    --danger-red: #C53030;
    --info-blue: #3182CE;

    /* Backgrounds */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7FAFC;

    /* Spacing */
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.625;
    color: var(--gray-800);
    background-color: var(--bg-secondary);
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-6);
}

/* Header */
.header {
    text-align: center;
    margin-bottom: var(--space-10);
    padding: var(--space-8) 0;
}

.header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: var(--space-3);
}

.subtitle {
    font-size: 20px;
    color: var(--gray-600);
}

/* Cards */
.card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: var(--space-8);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    margin-bottom: var(--space-6);
}

.card h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
}

/* Form Styles */
.calculator-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
}

.input-field {
    font-size: 18px;
    padding: 16px 20px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    background: white;
    transition: border-color 0.2s ease;
    min-height: 56px;
    text-transform: uppercase;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.input-help {
    font-size: 14px;
    color: var(--gray-600);
}

/* Button Styles */
.btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

.btn-primary:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
}

/* Loading States */
.loading-state {
    text-align: center;
    padding: var(--space-12);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--space-4);
}

.loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error Messages */
.error-message {
    background: #FED7D7;
    color: var(--danger-red);
    padding: var(--space-4);
    border-radius: 8px;
    margin-top: var(--space-4);
    border: 1px solid #FC8181;
}

/* Stock Info */
.stock-info h2 {
    font-size: 30px;
    margin-bottom: var(--space-4);
}

.stock-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.stock-price-display {
    font-size: 24px;
}

.stock-price {
    font-weight: 700;
    color: var(--success-green);
    font-size: 28px;
}

.timestamp {
    color: var(--gray-600);
    font-size: 16px;
}

.label {
    font-weight: 600;
    margin-right: var(--space-2);
}

/* Expiration Group */
.expiration-group {
    margin-bottom: var(--space-8);
}

.expiration-header {
    background: var(--gray-50);
    padding: var(--space-5);
    border-radius: 8px;
    margin-bottom: var(--space-4);
    border-left: 4px solid var(--primary-blue);
}

.expiration-header h3 {
    font-size: 22px;
    color: var(--gray-900);
    margin-bottom: var(--space-2);
}

.expiration-info {
    display: flex;
    gap: var(--space-6);
    font-size: 16px;
    color: var(--gray-600);
}

/* Options Table */
.options-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.options-table thead {
    background: var(--gray-50);
}

.options-table th {
    padding: var(--space-5);
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    border-bottom: 2px solid var(--gray-200);
    white-space: nowrap;
}

.options-table td {
    padding: var(--space-4);
    font-size: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.options-table tbody tr:hover {
    background: var(--gray-50);
}

.options-table tbody tr:last-child td {
    border-bottom: none;
}

/* Table Cell Formatting */
.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.return-excellent {
    color: var(--success-green);
    font-weight: 700;
}

.return-good {
    color: var(--info-blue);
    font-weight: 600;
}

.return-low {
    color: var(--gray-600);
}

.currency {
    font-family: 'Courier New', monospace;
}

/* Expandable Details */
.option-details {
    background: var(--gray-50);
    padding: var(--space-5);
    border-radius: 6px;
    margin-top: var(--space-3);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-3);
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: var(--space-2);
}

.detail-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
}

/* Disclaimer */
.disclaimer {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: var(--space-6);
    margin-top: var(--space-8);
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.disclaimer p {
    margin-bottom: var(--space-3);
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

.data-attribution {
    font-size: 12px;
    font-style: italic;
}

/* Footer */
.footer {
    text-align: center;
    padding: var(--space-8) 0;
    color: var(--gray-600);
    font-size: 14px;
    border-top: 1px solid var(--gray-200);
    margin-top: var(--space-12);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: var(--space-4);
    }

    .header h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 18px;
    }

    .card {
        padding: var(--space-5);
    }

    .stock-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .options-table {
        font-size: 12px;
    }

    .options-table th,
    .options-table td {
        padding: 8px 6px;
        white-space: nowrap;
    }

    .options-table th {
        font-size: 11px;
    }

    /* Smaller fonts for mobile */
    .options-table .currency {
        font-size: 12px;
    }

    .options-table small {
        font-size: 10px;
    }

    /* Make table scrollable on mobile */
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
    }

    /* Make option details single column on mobile */
    .option-details-grid {
        grid-template-columns: 1fr !important;
    }

    /* Reduce chart height on mobile */
    #profitChart {
        max-height: 250px !important;
    }

    #priceChart {
        max-height: 250px !important;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }

    .input-section,
    .btn-primary,
    .footer {
        display: none;
    }

    .card {
        box-shadow: none;
        border: 1px solid var(--gray-300);
    }
}
