/* QuoteAccept page styles */
.quote-accept-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.loading-container,
.error-container,
.success-container,
.rejected-container {
    background: white;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.loading-container p,
.error-container p,
.success-container p,
.rejected-container p {
    color: #6b7280;
    margin: 16px 0 0 0;
}

.error-container h1,
.success-container h1,
.rejected-container h1 {
    margin: 16px 0;
    color: #1f2937;
}

.hint {
    font-size: 14px;
    color: #9ca3af !important;
    margin-top: 24px !important;
}

.order-ref {
    background: #f0fdf4;
    padding: 12px 24px;
    border-radius: 8px;
    color: #059669 !important;
}

.quote-container {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.quote-header {
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.partner-info h2 {
    margin: 0 0 8px 0;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quote-title h1 {
    margin: 0;
    color: #1f2937;
    font-size: 28px;
}

.quote-ref {
    color: #667eea;
    font-weight: 500;
}

.info-section {
    background: #f9fafb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.info-row .label {
    color: #6b7280;
}

.info-row .value {
    color: #1f2937;
    font-weight: 500;
}

.products-section h3 {
    margin: 0 0 16px 0;
    color: #1f2937;
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.products-table th {
    background: #f9fafb;
    padding: 12px;
    text-align: left;
    color: #6b7280;
    font-weight: 600;
    border-bottom: 2px solid #e5e7eb;
}

.products-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

.products-table .center { text-align: center; }
.products-table .right { text-align: right; }
.products-table .bold { font-weight: 600; }

.product-name {
    font-weight: 500;
}

.product-period {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

.total-row {
    background: #f0fdf4;
}

.total-row td {
    font-weight: 600;
    color: #1f2937;
    font-size: 18px;
    border-bottom: none;
}

.total-value {
    color: #059669 !important;
    font-size: 20px !important;
}

.actions-section {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
    flex-wrap: wrap;
}

.disclaimer {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .quote-container {
        padding: 20px;
    }

    .quote-title h1 {
        font-size: 22px;
    }

    .products-table th:nth-child(3),
    .products-table td:nth-child(3) {
        display: none;
    }

    .actions-section {
        flex-direction: column;
    }

    .actions-section button {
        width: 100%;
    }
}
