:root {
    /* Primary Theme Colors */
    --company-color: #FFD500;
    --company-color-dark: #ccaa00;
    --background-color: #FDFDFD;
    --foreground-color: #555555;
    
    /* Energy Dashboard Colors */
    --consumption-color: #F78E43;
    --production-color: #FFDC42;
    --self-consumption-color: #AEBE0B;
    --grid-consumption-color: #555555;
    --over-production-color: #0095B4;
}

body {
    background-image: url("./assets/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    background-attachment: fixed;
    height: 100%;
    color: var(--foreground-color);

}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.info-box {
    min-width: auto;
    background-color: var(--background-color);
    text-align: center;
    padding: 3vh 2vw;
    max-width: 40vw;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

.infoTitle {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
}

.infoSubTitle {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.infoText {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.infoText a {
    color: var(--company-color);
    text-decoration: underline;
}

.infoText a:hover {
    text-decoration: none;
    color: var(--company-color-dark);
}

.redirectButton {
    background-color: var(--company-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.fake-button:hover {
    background-color: var(--company-color-dark);
}

hr {
    height: 1px;
	border: 0;
	border-top: 3px solid var(--foreground-color) !important;
	margin: 2.5rem 1rem;
}

.redirect-container {
    margin: 1vh auto 0;
    text-align: center;
}

.redirect-container a {
    text-decoration: none;
    color: var(--foreground-color);
    background-color: var(--company-color);
}

.fake-button {
    display: inline-block;
    background-color: var(--company-color);
    padding: 0.75rem 3rem;
    color: white;
    text-align: center;
    font-size: 1.2rem;
    border-radius: 5px;
}

.logo {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 200px; /* Adjust this value based on your preferred maximum size */
}