.book-launches-table {
    margin: 20px 0;
    overflow-x: auto;
}

.book-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.book-table thead {
    background: #2271b1;
    color: #fff;
}

.book-table th,
.book-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.book-table th {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.book-table tbody tr:hover {
    background: #f5f5f5;
}

.book-table tbody tr:last-child td {
    border-bottom: none;
}

.book-links a {
    color: #2271b1;
    text-decoration: none;
    font-weight: 500;
}

.book-links a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .book-table {
        border: 0;
    }
    
    .book-table thead {
        display: none;
    }
    
    .book-table tr {
        margin-bottom: 15px;
        display: block;
        border: 1px solid #ddd;
    }
    
    .book-table td {
        display: block;
        text-align: right;
        padding: 10px;
        border-bottom: 1px solid #eee;
    }
    
    .book-table td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }
    
    .book-table td:last-child {
        border-bottom: 0;
    }
}