/* public-style.css */
@import url('theme.css');

body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    padding: 2rem;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 800px;
}

.card {
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.quote-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.quote-header img {
    max-height: 50px;
    margin-bottom: 1rem;
}

.quote-header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0;
}

.quote-details p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.quote-details p strong {
    color: var(--text-primary);
    font-weight: 500;
}

table { margin-top: 2rem; }

tfoot td {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.actions {
    margin-top: 2.5rem;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn { padding: 0.75rem 1.35rem; }

