css

/* public/css/layout.css */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: Arial, sans-serif;
}

table, td, th {
    border: none;
    border-collapse: collapse; /* Prevents double borders */
}

/* Top Section (Working Perfectly) */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    border-bottom: 1px solid #eee;
    width: 100%;
    box-sizing: border-box;
}

.logo-link {
    text-decoration: none;
    display: block;
}

.logo {
    margin-left: 10px;
    display: block;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;
}

.search-form input[type="text"] {
    padding: 3px 5px;
    font-size: 1.0em;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 150px;
    height: 26px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}
.search-form button {
    color: #1E311D;
    background-color: #D4EAD4;
    padding: 2px 12px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: normal;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

/* Unified Style for Generated Links and Button */
.tabs a, 
.subpages a, 
.you-are-here a, 
.sidebar a, 
.topic-links a, 
.search-form button {
    color: #1E311D;
    background-color: #D4EAD4;
    padding: 2px 12px;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 0.9em;
    font-weight: normal;
    text-decoration: none;
    display: inline-block;
    border: none; /* For button */
    cursor: pointer; /* For button */
}

.tabs a:hover, 
.subpages a:hover, 
.you-are-here a:hover, 
.sidebar a:hover, 
.topic-links a:hover, 
.search-form button:hover {
    color: #2DBB28;
    background-color: #C0E0C0;
}

/* Tabs Positioning */
.tabs {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Lower Section Formatting */
.clsTopTitle{
    background-color: #083112;
    overflow: hidden;
    letter-spacing: 0px;
    margin-top:2px;
    margin-bottom:2px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    align-items: center;
    font-size:2.5em;
    line-height:1.2em;
    color:#ffffff;
    margin: 0em 0em 0em 0em;
    border: 0em 0em 0em 0em;
    padding: 0px;
    }

.subpages, .you-are-here {
    padding: 10px;
}

.content {    
    font-family: Arial, sans-serif;
    padding: 30px;
    vertical-align: top;
}

.sidebar {
    padding: 30px;
    vertical-align: top;
}

.sidebar h3 {
    margin-bottom: 10px;
}

.clsPeerSelected {
    color: #083112;
    font-family: Arial, sans-serif;
    font-weight: bold;
    padding: 4px 12px; /* Match the look, no background */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .search-form input[type="text"] {
        width: 100px;
    }
    .tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .content, .sidebar {
        padding: 15px;
    }
}

/* Bible Links Styling */
.parallel-translations, .interlinear-link {
    margin-bottom: 20px;
}

.verse-links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.verse-link, .interlinear-chapter-link {
    color: #1E311D;
    background-color: #D4EAD4;
    padding: 2px 12px;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 0.9em;
    font-weight: normal;
    text-decoration: none;
    display: inline-block;
}

.verse-link:hover, .interlinear-chapter-link:hover {
    color: #2DBB28;
    background-color: #C0E0C0;
}

/* Green Button Style */
.green-button {
    color: #1E311D;
    background-color: #D4EAD4;
    padding: 2px 12px;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 0.9em;
    font-weight: normal;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.green-button:hover {
    color: #2DBB28;
    background-color: #C0E0C0;
}

/* Apply Green Button Style */
.tabs a,
.subpages a,
.you-are-here a,
.sidebar a,
.topic-links a,
.search-form button,
.verse-link,
.interlinear-chapter-link,
.search-results a.search-link,
.pagination a {
    color: #1E311D;
    background-color: #D4EAD4;
    padding: 2px 12px;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 0.9em;
    font-weight: normal;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.tabs a:hover,
.subpages a:hover,
.you-are-here a:hover,
.sidebar a:hover,
.topic-links a:hover,
.search-form button:hover,
.verse-link:hover,
.interlinear-chapter-link:hover,
.search-results a.search-link:hover,
.pagination a:hover {
    color: #2DBB28;
    background-color: #C0E0C0;
}

.pagination a.active {
    color: #1E311D;
    background-color: #A8D4A8; /* Darker green for active page */
    font-weight: bold;
}

/* Search Results Layout */
.search-results {
    margin: 20px 0;
}

.search-results h2 {
    color: #333;
}

.search-results ul {
    list-style: none;
    padding: 0;
}

.search-results li {
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.search-results .snippet {
    color: #555;
    font-size: 0.9em;
}

/* Pagination Layout */
.pagination {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}