html {
	height:100%;
	margin:0;
	padding:0;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    background-color:#FFF;	
	height:100%;
}
.mont {
  font-family: 'Montserrat', sans-serif;
}
.login-container {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
}

/*form {
    display: flex;
    flex-direction: column;
}*/

input[type="text"],
input[type="password"] {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #333;
    border-radius: 4px;
    width:320px;
}

button {
    font-size:18px;
    padding:8px;
    margin-top:20px;
	width:150px;
	background-color:#0b57d0;
	color:#FFF;
	border:0px;
	border-radius:5px;
	cursor:pointer;
}

.submit {
	display:block;
	margin-top:10px;	
}

h2 {
    font-weight:bold;
	font-size:21px;
    display:block;
    margin: 0px 0px 20px 0px;
	border-bottom: 0px solid #EBEBEB;
    color: #5d5d5d;
    padding-bottom: 10px;
}

.line-container {
    display:none;
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    width: 100%;
    height: 4px;
    background-color: #28A745; /* Initial gray color */
    overflow: hidden;
}

.fill-line {
    width: 0;
    height: 100%;
    background-color: #28A745; /* Blue color */
    transition: width 90s linear; /* Animation duration is set to 60 seconds */
}

.fill {
    width: 100%;
}	

.sidebar {
    background-color:transparent;
/*	background-color:#F7F7F7;*/
    color: #666666;
    padding: 20px;
    width: 260px;
    height: 120vh;
	border-right:1px solid #EBEBEB;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.sidebar h2 {
    text-align: center;
    color: #5d5d5d;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    margin: 4px 10px 4px 10px;
	padding: 10px 10px 10px 10px;
    border-bottom: 0px solid #28A745;
    cursor: pointer;
    display: flex; /* Aligns items horizontally */
    align-items: center; /* Centers items vertically */
	border-radius:10px;
}

.sidebar ul li.side_active {
    background-color:#F4F4F4;	
	font-weight:bold;
}

.sidebar ul li i {
    width: 30px; /* Fixed width for icons */
    text-align: center; /* Center-align the icons */
    margin-right: 10px;
}

.sidebar ul li i.button-icons {
    margin-right: 15px;
}
	
.sidebar ul li a {
	color:#666666;
	text-decoration:none;
}

.sidebar ul li a:hover {
	color:#000;
}
	
.sidebar-footer {
    position: relative;
	border-top:1px solid #EBEBEB;
	margin:10px auto auto auto;
}

.sidebar-emergency {
	position:fixed;
	bottom:30px;
}
	
.content {
    flex-grow: 1;
    padding: 10px 20px 20px 11px;
    background-color: #FFF;
	color: #666;
}

.profile-form-container {
    background-color: white;
    padding: 20px;
    border-radius: 9px;
    margin: 0px;
    width: calc(100% - 40px); /* Adjust width as necessary */
	max-width:800px;
}

.profile-form-container h3 {
    color: #5d5d5d;
    margin-bottom: 20px;
	border-bottom:1px solid #EBEBEB;
	font-weight:normal;
	font-size:22px;
	padding:0px 0px 20px 0px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    color: #666;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group input[type="password"] {
    width: 97%; /* Full width */
    padding: 8px;
    margin: 5px 0 15px 0;
    border-radius: 4px;
	border:1px solid #333;
}

.custom-checkbox {
	display:flex;	
	align-items:center;
	margin:0px auto 20px 0px;
}

textarea {
	padding:10px;	
}

.checkbox-label {
	line-height: 1.6;	
}

.checkbox {
	width:17px;
	height:17px;
	margin-right:8px;
}

select {
	padding:8px;
	width:150px;
}
.error {
    border:2px solid red !important;
    background-color:#CCC;
}
#error_container {	
    font-size:12px;
    font-weight:bold;
    text-align:left;
    padding:8px;
    border:2px solid red;
    margin:10px auto 8px 0px;	
    color:red;
    width:300px;
}	
.notices {
	background-color:#d4edda;
	padding:10px;
	color:#155724;
	position:fixed;
	top:0px;
	width:auto;
	border-bottom: 1px solid #c3e6cb;
	z-index:15000;
}

.menu {
	display:none;	
}

.sidebar ul {
	display:block;

	margin-left:-5px;
}

.thumbnail img {
	max-width:300px;	
}

h2.logo {
	border-bottom:0px;	
}

#usageChart {
	height:400px;	
}

.filter-toggle {
  text-align: left;
  margin-bottom: 20px;
  width:360px;
  position:absolute;
  left:-4px;
  top:35px;
  font-size:12px;
  display:block;
  z-index:3;
}

.toggle-btn {
  display: inline-block;
  padding: 10px 10px;
  margin: 0 -4px 0px 0px;
  border:0px;
  border-bottom: 1px solid #FFF;
  background-color: #FFF;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size:13px;
  width:auto;
  color:#333;
}

.toggle-btn:last-child {
  border-right: 0px solid #ccc; /* Add the border back to the last button */
}

.toggle-btn.active,
.toggle-btn:hover {
  background-color: #FFF;
  border:0px;
  border-bottom:1px solid #CCC;
}

	.date-range-selector {
		text-align: center;
		padding: 10px;
		margin-top:-47px;
	}

	.date-range-selector button {
		padding: 5px 5px;
		margin: 0 5px;
		border: none;
		border-radius: 5px;
		background-color: #e6e6e6;
		cursor: pointer;
		width:70px;
		font-size:14px;
	}

	.date-range-selector button:hover {
		background-color: #d4d4d4;
	}

	.date-range-selector button.active {
		background-color: #4285F4;
		color: white;
	}	

	#outage-heading-h2 {
		height:auto;	
	}

	#outage-heading {
		display:block;	
	}

	.outage-mobile-heading {
		display:none;	
		position:absolute;
		top:6px;
		left:0px;
		font-size:29px;
	}

	.phone-number-container, .phone-number {
		display:inline;
	}

/* Hide sidebar by default on mobile and show hamburger menu */
@media (max-width: 968px) {
	
	.phone-number-container, .phone-number {
		display:none;
	}	
	
	.profile-form-container {
		margin-top:12px;	
	}
	
	#outage-heading-h2 {
		height:35px;	
	}
	
	#outage-heading {
		display:none;
	}
	
	.outage-mobile-heading {
		display:inline;	
	}	
	
	.phone_number {
		display:none;		
	}
	
    .sidebar {
		display:block;
		width:100%;
		position:absolute;
		top:0px;
	
		border-bottom:0px solid #CCC;
		height:60px;
		z-index:9100;
    }
	
	.menu {
		display:block;	
		padding:20px;
		margin:-24px -20px auto auto;
		z-index:1800;
	}
	
	h2.logo {
		text-align:left;	
	}
	
	.logo {
		display:block;
		margin-top:-14px;
		max-height:50px;
	}
	
	.logo img {
		height:60px;	
		max-height:50px;
	}
	
	.content {
		margin-top:50px;	
	}
	
	.sidebar ul {
		display:none;
		margin-top:2px;
		z-index:9000;
		margin-left:-10px;
		background-color:#FFF;
		width:103%;
	}

	.sidebar ul li {
		font-size:22px;	
	}
	
	.sidebar ul li:first {
		padding-top:40px;	
	}	
	
	.thumbnail img {
		width:100px;	
	}
	
    .hamburger {
        display: block;
    }

    .content {
/*        padding: 30px 20px 20px 20px;*/
		padding:20px 0px 20px 0px;
		margin:25px auto auto auto;
    }
    
    /* Responsive table */
    table {
        display: block;
        overflow-x: auto;
    }
    
    /* Adjust input and button sizes for mobile */
    input[type="text"],
    input[type="password"],
    input[type="file"],
    .custom-checkbox,
    button {
        width: 100%;
        box-sizing: border-box; /* Include padding and border in the element's width */
    }
	
	.filter-toggle {
		top:40px;
		right:-90px;
	}	
	
	.live-feed {
		min-height:80px;	
	}
	
	.date-range-selector {
		margin-left:-100px;	
	}
	
}

.hr_line {
	display:block;
	border-top:1px solid #EBEBEB;
	height:1px;
	margin:15px auto 15px auto;
}

.log_link {
	color:#666666;	
}

.log_link:hover {
	color:#333;	
}
#usageChart {
	height: 30vh; /* Adjust the height */
    width: 100vw; /* Adjust the width */	
}
.form_table td {
	padding-left:0px;	
}

/* Full-screen Overlay Styles */
.overlay {
    position: fixed; /* Use fixed positioning */
    top: 0;
    left: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    display: flex; /* Use flexbox for easy alignment */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    z-index: 9999; /* Make sure it's on top of other content */
}

.overlay i {
    font-size: 3em; /* Large spinner icon */
    color: white; /* White color for the icon */
}

.live-feed-message {
	word-wrap: break-word;	
}

.actionButton {
    background-color: #4CAF50; /* Green background */
    border: none; /* No borders */
    color: white; /* White text */
    padding: 10px 10px; /* Padding around the text */
    text-align: center; /* Centered text */
    text-decoration: none; /* No underline */
    display: inline-block; /* Fit the content width */
    font-size: 14px; /* Similar font size to other buttons */
    margin: 4px 2px; /* Margin for spacing */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
}

.actionButton:hover {
    background-color: #45a049; /* Darker green background on hover */
}

.backButton {
	background-color:transparent;
	border:1px solid #CCC;
	color:#333;
	border-radius:6px;
	white-space: nowrap;
	width:auto;
	padding:10px 12px 10px 12px;
	cursor:pointer;
}
.backButton:hover {
	border:1px solid #333;	
}
.fa-trash:hover {
	color:red;	
}
.fa-pen:hover {
	color:#333;	
}
.dashboard-container {
    max-width: 800px;
    margin: 0 auto 30px 0px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
}
	
.sep-line {
    border-top:1px solid #e0e0e0;
    height:1px;
    width:100%;
    display:block;
    margin:7px auto 7px auto;
}


