/* General styling for GGPALM website */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #101827;
    color: #ffffff;
    line-height: 1.6;
}

/* Navbar styling */
.navbar {
    padding: 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f8f9fa;
}

.navbar-nav .nav-link {
    color: #f8f9fa;
    margin-right: 1rem;
}

.navbar-nav .nav-link:hover {
    color: #ffc107;
}

/* Header styling */
header {
    padding: 8rem 0;
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
}

.masthead-heading {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
}

.masthead-subheading {
    font-size: 1.5rem;
    font-weight: 400;
}

/* Upload form styling */
#upload {
    padding: 4rem 0;
}

.form-group label {
    font-weight: bold;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
}

/* Footer styling */
.footer {
    background-color: #212529;
    padding: 4rem 0;
}

.footer .text-uppercase {
    font-weight: 700;
    font-size: 1.25rem;
}

.footer p {
    color: #bdbdbd;
}

.btn-social {
    border-radius: 50%;
    font-size: 1.5rem;
    color: #f8f9fa;
    transition: all 0.3s ease;
}

.btn-social:hover {
    color: #ffc107;
    transform: scale(1.1);
}

/* Table styling for result page */
table {
    width: 100%;
    margin-top: 2rem;
    color: #212529;
    background-color: #ffffff;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

table thead {
    background-color: #343a40;
    color: #ffffff;
}

table th, table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

table tbody tr:last-child {
    border-bottom: none;
}

table tbody tr:hover {
    background-color: #f1f1f1;
}

/* Style for special rows (last three rows in summary) */
.special-row {
    font-weight: bold;
    font-size: 1.2rem;
}

.special-row td {
    border-top: 2px solid #000;
    background-color: #f9f9f9;
}

/* Spinner and loading message */
#loadingMessage {
    color: #007bff;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

.navbar-logo {
        width: 1px; /* Adjust the width as needed */
        height: auto;
        margin-bottom: 1px; /* Adds some space between the logo and the heading */
    }



