/* General Setup */
body {
    font-family: 'SolaimanLipi', Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Header */
header {
    text-align: center;
    border-bottom: 3px solid #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

h1 { color: #2c3e50; margin: 0; }
.subtitle { color: #7f8c8d; font-size: 1.2rem; }

/* Definitions & Cards */
.definition {
    background: #eef2f3;
    padding: 15px;
    border-left: 5px solid #3498db;
    font-style: italic;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
}

.example-box {
    background: #fff9db;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px dashed #f1c40f;
}

/* Responsive Table */
.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #2c3e50;
    color: white;
}

tr:hover { background-color: #f9f9f9; }

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #95a5a6;
}
/* Collapsible Style */
.collapsible {
    background-color: #2c3e50;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: 0.3s;
}

.active, .collapsible:hover {
    background-color: #34495e;
}

.content-source {
    padding: 0 18px;
    display: none; /* Hidden by default */
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.full-script {
    padding: 20px 0;
    font-family: 'SolaimanLipi', serif;
    line-height: 1.8;
}

.script-note {
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #eee;
    margin-top: 20px;
    padding-top: 10px;
}
.gallery-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.image-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-card img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    display: block;
    margin-bottom: 8px;
    filter: grayscale(30%);
}

.image-card span {
    font-size: 0.8rem;
    color: #666;
    font-weight: bold;
    display: block;
}

.image-card a {
    text-decoration: none;
}

.image-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.image-card:hover img {
    filter: grayscale(0%);
}

