body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    color: #333;
}
.header {
    text-align: center;
    margin-bottom: 30px;
}
.header img {
    max-width: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.jai-guruji {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 10px;
}
h1 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 30px;
}
.controls {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
#search {
    padding: 10px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}
.page-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}
#items-per-page {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
}
th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
}
tr:hover {
    background-color: #f9f9f9;
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 5px;
}
.pagination button {
    padding: 8px 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}
.pagination button:hover {
    background-color: #f5f5f5;
}
.pagination button.active {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}
.pagination button:disabled {
    background-color: #ddd;
    cursor: not-allowed;
}
a {
    color: #4285F4;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.youtube-link {
    color: #FF0000;
    font-weight: bold;
}
@media (max-width: 768px) {
    .controls {
        flex-direction: column;
        align-items: stretch;
    }
    #search {
        width: 100%;
    }
    .page-controls {
        margin-top: 10px;
        justify-content: space-between;
    }
    table {
        font-size: 14px;
    }
    th, td {
        padding: 8px 10px;
    }
}
.footer {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 14px;
}
