﻿.containerTop {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.dataContainer {
    width: 50%; /* Set the width of the div */
    height: 600px; /* Set the height of the div */ /* Set the background color */
    border: 1px solid lightgray; /* Optional: add a border to make it more visible */
    display: inline-block; /* Ensures the div is a block-level element */
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    margin-right: 50px;
}

.outer-box {
    padding: 0.22rem; /* Space between the inner and outer boxes */
    border-radius: 5px; /* Rounded corners for the outer box */
    list-style: none; /* Remove default list item styling */
    display: block; /* Block display to span full width */
    width: 98%; /* Span the entire width of the parent */
    align-self: stretch; /* Ensure the flex item stretches to fill the width of the parent */
    margin: 4px;
}

.inner-box {
    background-color: white; /* White background for the inner box */
    padding: 0.5rem;
    border: 1px solid #B2BEB5; /* Light grey border */
    border-radius: 5px; /* Rounded corners for the inner box */
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex: 1; /* Add this to make the divs take up equal space */
    flex-direction: column;
}

    .inner-box > div {
        text-align: left; /* Align text to the left */
        flex: 1; /* Make the divs take up equal space */
    }

.pagetitle {
    margin: 0; /* Remove default margin for better centering */
    font-size: 2rem;
}

#title {
    text-align: left; /* Align text to the left */
    flex: 3; /* Make the divs take up equal space */
}

#status {
    text-align: left; /* Align text to the left */
    flex: 2; /* Make the divs take up equal space */
}

#four {
    text-align: left; /* Align text to the left */
    flex: 4; /* Make the divs take up equal space */
}

#three {
    text-align: left; /* Align text to the left */
    flex: 3; /* Make the divs take up equal space */
}

#two {
    text-align: left; /* Align text to the left */
    flex: 2; /* Make the divs take up equal space */
}

.site-name,
.site-status-indicator {
    padding: 5px 10px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures spacing between title and right component */
}

.container-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Ensures spacing between title and right component */
    width: 100%;
}

container-section-full {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Ensures spacing between title and right component */
    width: 100%;
}

.container-section h3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; /* Ensures spacing between title and right component */
    width: 100%;
    /*padding-left: 1.5rem;*/
    padding-bottom: 0;
    margin-bottom: 0;
    /*padding-top: 1rem;*/
}

.container-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start; /* Ensures spacing between title and right component */
    width: 100%;
    padding: 1.5rem;
}


.user-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; /* Ensures spacing between title and right component */
    width: 100%;
    padding: 1.5rem;
}

.container-section ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly; /* Ensures spacing between title and right component */
    width: 100%;
    padding: 1rem;
    margin: 0;
    padding-top: 0;
}

.chiptechgreen {
    color: #77BF42;
}

.title {
    margin: 0; /* Remove default margin for better centering */
    font-size: 3rem;
}

.title-center {
    flex-grow: 1;
    text-align: center;
}

.title-start {
    flex-grow: 1;
    text-align: start;
}

.titlestyle {
    font-family: "Noto Sans", sans-serif;
    padding-top: 0;
}

.scrollable-list {
    max-height: 40vh; /* Adjust this value based on the number of entries you want */
    overflow-y: auto;
    overflow-x: hidden;
}

.right-component {
    margin-left: auto; /* Pushes the right component to the right */
    height: auto;
}

.online {
    background-color: green;
    color: white;
}

.offline {
    background-color: red;
    color: white;
}

.unknown {
    background-color: orange;
    color: white;
}

.input.form-control {
    width: 100%;
}

.data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}

.offlineDate {
    display: flex;
    flex-direction: row;
    align-items: start;
}


