:root {
    --bg: #07111f;
    --surface: #10233d;
    --text: #f5f7ff;
    --muted: #a9bedb;
    --accent: #4cc9f0;
    --accent-2: #7b61ff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #07111f, #122742);
    color: var(--text);
}

.goodreads-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 70px;
}

.page-header {
    text-align: center;
    margin-bottom: 35px;
}

.page-header h1 {
    margin: 0 0 10px;
    font-size: 2.2rem;
}

.page-header p {
    margin: 0 auto;
    max-width: 700px;
    color: var(--muted);
    line-height: 1.7;
}

.table-wrapper {
    overflow-x: auto;
    background: rgba(16, 35, 61, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.24);
}

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

.quotes-table th,
.quotes-table td {
    padding: 16px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
}

.quotes-table th {
    background: rgba(255, 255, 255, 0.05);
    color: #dcecff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.quote-image {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    border: 2px solid rgba(76, 201, 240, 0.4);
    background: #1c3350;
}

.quote-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.quote-author {
    font-size: 1rem;
    font-weight: 700;
    color: #dcecff;
    white-space: nowrap;
}

.quote-text {
    color: var(--muted);
    line-height: 1.6;
    max-width: 500px;
}

.quote-likes {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .goodreads-page {
        padding: 35px 16px 50px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}
