/* assets/style.css */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
    background-color: #f8f9fa;
}
body, td, th {
    font-family: 'Roboto', 'Open Sans', sans-serif !important;
}


/* Sticky Header */
.app-header {
    position: sticky;
    top: 0;
    height: 50px;
    background-color: rgb(0, 51, 102);
    color: white;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    z-index: 1000;
}
.app-header img {
    height: 30px;
    margin-right: 16px
}
.app-header h1 {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

/* Sticky Footer */
.app-footer {
    position: sticky;
    bottom: 0;
    height: 44px;
    background-color: #2a2a2a;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 16px;
    z-index: 1000;
    justify-content: space-between;
}

.app-body {
    overflow-y: auto;
    padding: 16px;
    max-height: calc(100vh - 94px); /* 50px header + 44px footer */
    min-height: calc(100vh - 94px);
}


.kelp-data-table table th {
    text-transform: capitalize;
    font-weight: bold !important;
    text-align: center !important;
    white-space: normal !important;
    height: auto !important;
}


.kelp-data-table table th:last-child,
.kelp-data-table table td:last-child{
    text-align: left !important;
}
.kelp-data-table table th,
.kelp-data-table table td {
    padding: 3px 5px !important;
}

.location-row{
    padding-bottom: 10px
}

.location-label {
    font-weight: bold;
    color: #343a40;
    text-align: right;
}

.main-svg {
    border: 1px solid grey;
}
