/* styles.css */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    line-height: 1.6;
    color: #555;
}

/* Navbar Styles */
.navbar {
    background-color: #343a40;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #ffffff !important;
}

.nav-link {
    color: #dcdcdc !important;
    margin-right: 10px;
}

.nav-link:hover {
    color: #ffffff !important;
}

/* PDF List */
#pdf-list {
    list-style: none;
    padding: 0;
}

#pdf-list .list-group-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 10px;
}

/* PDF Viewer */
#pdf-viewer {
    width: 100%;
    height: 600px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 20px;
    background-color: #f9f9f9;
}

/* Metadata Display */
#metadata-display {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #ffffff;
}

#metadata-display h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #343a40;
}

/* Buttons */
button {
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* Footer */
footer {
    background-color: #343a40;
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}
