.nav-link {
    color: #EF8B02;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

#hero {
    background-image: url(assets/solarPanels.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Create the dark overlay */
#hero::after {
    content: '';
    /* Necessary for pseudo-elements */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Adjust the opacity (0.5 in this case) */
    pointer-events: none;
    /* Ensures the overlay doesn't interfere with interaction */
}

.heroText {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: bold !important;
    position: relative;
    /* Positions text above the overlay */
    z-index: 2;
    /* Higher than the overlay */
    color: white;
    /* Ensures readability */
    text-align: center;
    /* Centers the text horizontally */
    top: 50%;
    /* Vertically centers the text */
    transform: translateY(-50%);
    /* Adjusts for perfect vertical alignment */
    margin: 0;
    /* Removes default margin */
}

a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: bold !important;
}

button {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: bold !important;
}

h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: bold !important;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background-color: #303D31;
    color: #EF8B02;
    padding: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: bold !important;
}

td {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: bold !important;
    background-color: #E9ECEF;
    padding: 10px;
    border-bottom: 1px solid black;
}

.error {
    color: red;
}

body {
    margin: 0;
}