/* stylesheets/style.css */

/* Base Styles */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #0056b3;
    text-decoration: underline;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    color: #222;
    margin-bottom: 1rem;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Layout and Grid System */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header, .footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px 0;
}

.header a, .footer a {
    color: #ffc107;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin-left: 20px;
}

.navbar a {
    color: #fff;
    font-weight: bold;
}

.navbar a:hover {
    color: #ffc107;
}

/* Buttons */
.button, button, input[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
}

.button:hover, button:hover, input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Forms */
input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
}

label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

/* Articles and Content */
.article-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.article-meta {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

blockquote {
    border-left: 4px solid #ffc107;
    padding-left: 1rem;
    color: #6c757d;
    margin: 1.5rem 0;
}

/* Sidebar */
.sidebar {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.sidebar h3 {
    margin-top: 0;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin-bottom: 10px;
}

/* Footer */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    margin: 0 10px;
    color: #ffc107;
}

.footer-contact {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar ul {
        flex-direction: column;
        width: 100%;
    }

    .navbar li {
        margin-left: 0;
        margin-top: 10px;
    }

    .container {
        width: 95%;
        padding: 10px;
    }
}

/* Accessibility Enhancements */
:focus {
    outline: 2px dashed #0056b3;
    outline-offset: 2px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
/* Aligning Tabs to the Left */
.pkp_structure_head {
    display: flex;
    justify-content: flex-start; /* Aligns content to the left */
    padding-left: 0; /* Removes any default padding */
    gap: 15px; /* Adds spacing between tabs if needed */
}

.pkp_structure_head .tab {
    display: inline-block;
    padding: 10px 15px;
    text-align: left;
}
