/* General Page Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
    margin: 0;
    padding: 10px;
    color: #333;
}

/* Container */
.club-container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.club-header {
    text-align: center;
    margin-bottom: 30px;
}

.club-header h1 {
    color: #2c3e50;
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.club-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Table */
.book-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.book-table thead {
    background: linear-gradient(135deg, #4e73df, #224abe);
    color: #fff;
}

.book-table th,
.book-table td {
    padding: 5px 5px;
    text-align: left;
}

.book-table th {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.search-filter {
    margin-bottom: 20px;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.filter-form input,
.filter-form select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.filter-form button {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
}

.filter-form a:visited,
.filter-form a {
    text-decoration: none;
    padding: 8px 15px;
    background: #6c757d;
    color: white;
    border-radius: 6px;
}

.book-table a:visited,
.book-table th a {
    color: #ffffff;
    text-decoration: none;
    display: block;
}

.book-table td a:visited {
    color: #b02626;
    text-decoration: none;
}

.book-table th a:hover {
    color: #ffffff;
}

.book-table tbody tr {
    border-bottom: 1px solid #7fa1c0;
    transition: all 0.3s ease;
}

.book-table tbody tr:hover {
    background-color:  #ffffff;
    transform: scale(1.01);
}

.book-table tbody tr:last-child {
    border-bottom: none;
}

/* Column Styling */
.book-title {
    font-weight: bold;
    color: #2c3e50;
}

.author {
    color: #4e73df;
    font-weight: 500;
}

.badge-year {
    display: inline-block;
    background: #e8f0fe;
    color: #224abe;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 400;
}


.meeting-place {
    color: #28a745;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }


.book-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    

}