@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}


/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  
}
/* ----------HOMEPAGE ----------*/
#homepage {
  background-color: #ECFEFF;
  width:100%;
  height: 100%;

}

/* ----------NAVBAR ----------*/
.welcome{
  margin-top: 100px;
  display: flex;
  justify-content: center;
}

.fullLogo{
  display: flex;
  justify-content: center;
  background-color: #ECFEFF;
  margin-top: 85px;;
}

.fullLogo img{
  width: 100%;
}

.logo{
  display: flex;
  align-items: left;
  justify-content: left;
}

.logotitle{
  display: flex;
  align-items: left;
  margin-left: 0px;
}

.logotitle img{
  height: 20px;

}

.logo img {
  height: 60px;  /*Adjust the height as needed  */
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 10px;


}

.tagline{
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 15px
}

#navbar {
  display: flex;
  /* justify-content: space-between; */

  align-items: center;
  background-color: #19648D; /* You can change the background color as needed */
  padding: 20px 50px;
  position: fixed;
  top: 0;
  left: 0; /* Ensure the navbar touches the left edge */
  right: 0; /* Ensure the navbar touches the right edge */
  width: 100%;
  box-sizing: border-box;
  z-index: 1000; /* Ensures the navbar stays on top */
  height: 90px;
}


/* 
.nav-container {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
} */

.rightside{
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: right;
}

.rightside a{
  color: #efefef;
}

.nav-links {
  display: flex;
  gap: 20px;
  margin-left: 40px;

}

.nav-links a {
  color: #efefef;
  text-decoration: none;
  padding: 7px;

}

.nav-links a:hover {
  background-color: #e1e1e1; /* Change the hover color as needed */
  color: rgb(48, 48, 48);
  border-radius: 4px;
}

.auth-button button {
  background-color: #efefef; /* Change the button color as needed */
  color: rgb(0, 0, 0);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
  /* display: flex;
  justify-content: right; */
}
.auth-button button:hover {
  background-color: #cacaca;
}

#header {
  margin-top: 60px; /* Adjust if needed to account for the fixed navbar height */
  padding: 20px;
}

/* ----------LOGIN PAGE ----------*/
.entirepage{
  position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
  background-color: hsl(0, 0%, 94%);

}

#loginform {
  background-color: #fcfcfc;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  padding: 60px;
  box-shadow: 0 0 10px rgba(56, 56, 56, 0.1);
  margin-top: 150px;
}

/* Input Field Styles */
#loginform input[type="text"] {
  width: 250px;
  background-color: #DFE5F6;
  border-radius: 5px;
  border: none;
  padding: 15px;
  /* margin-bottom: 15px; */
}

.loginContainer {
  display: flex;
  justify-content: center;
  align-items: center;

}

.title {
  margin-bottom: 40px;
  
}

.formGroup {
  margin-bottom: 15px;
}

#username {
  width: 250px;
  background-color: #DFE5F6;
  border-radius: 5px;
  border: none;
  padding: 15px;
}

#password {
  width: 250px;
  background-color: #DFE5F6;
  border-radius: 5px;
  border: none;
  padding: 15px;
}

.account {
  margin-top: 40px;
  margin-bottom: 5px;
}

/* ----------SIGNUP PAGE ----------*/
.signup {
  margin-top: 5px;
  text-decoration: none;
  color: #343940; /* Adjust color as needed */
  font-size: small;
  border: 1px solid #5d6a7c;
  padding: 5px;
  border-radius: 5px;
}

.signup:hover{
  color: #1F87CA;
  border: 1px solid #19648D;

}

.submit button{
  margin-top: 10px;
  background-color: #5d6a7c; /* Change the button color as needed */
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  width: 250px;
}

.submit button:hover {
  background-color:  #19648D; /* Change the button color as needed */
}

/* ----------METRIC PAGES----------*/
#page{
  width:100%;
  position:absolute;
  top:75px;
  display: flex;
  /* height should ideally based on media query */
  height: auto;
  background-color:  hsl(210, 5%, 93%);

}

/* ----------SIDEBAR ----------*/
/*sidebar css begins*/
/* Links inside the sidebar */
/* Sidebar Styles */
.sidebar {
  background-color: hsl(210, 50%, 97%);
  min-width: 20%;
  display: flex;
  justify-content: center;
  padding: 10px;
}

.sidebarMenu {
  overflow: hidden;
  font-family: Arial;
  display: flex;
  flex-direction: column;
  width: 75%;
  margin-top: 50px;
}

.sidebarMenu a {
  font-size: 16px;
  color: rgb(38, 38, 38);
  text-align: left;
  padding: 14px 16px;
  text-decoration: none;
  border-radius: 10px;
  display: block; /* Ensure the links are block elements */
}

.sidebarMenu a:hover {
  background-color: #19648C;
  color: white;
}

/* Dropdown Styles */
.dropdown {
  position: relative; /* Ensure the dropdown content is positioned correctly */
  width: 100%;
}

.dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: rgb(0, 0, 0);
  padding: 14px 16px;
  border-radius: 10px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left; /* Align text to the left */
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100%; /* Ensure the dropdown matches the width of the button */
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 10px;
  left: 0;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #19648C;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #19648C;
  color: white;
}



/* ----------DASHBOARD ----------*/
.dashboard{
  /* background-color:  hsl(209, 63%, 81%); */
 
  width:85%;
  margin:20px;
  padding: 20px;
  /* border-radius: 50px; */
  border-width:0.5px;
  /* overflow-y: auto; */
}
/* .dashboard-title h1{
margin-bottom:20px;
} */
.dashboard h2, h4{
  color: hsl(0, 0%, 31%);
  font-size: medium;
  margin-bottom: 10px;
  font-weight: bolder;
}
.dashboard-title {
  
  display: flex;
  align-items: baseline;
  }
.dashboard-title h1{
  color: hsl(0, 0%, 20%);

 margin-right: 20px;

  }
.dashboard-title h4{
  margin-right: 20px;
  color: hsl(0, 0%, 50%);
  }
  .dashboard-title h3{
    color: hsl(0, 0%, 31%);

    margin-top: 12px;
  }
.widget-container{
  display: grid;
  grid-template-columns:  1fr 1fr 1fr;
  gap: 20px;
  margin: 10px 0;
  margin-bottom: 20px ;
}
.widget{
  display:flex;
  flex-direction:column;
  align-items: center;
  justify-content: center;
  /* justify-content: space-around; */
  padding:15px;
  margin-top: 10px;
  border-radius: 5px;
  background-color: hsl(0, 0%, 100%);
  height: 150px;
  border-radius: 10px;
  box-shadow: 0 2px 6px 0 hsla(0,0%,0%,0.2);

}
.clustit{
  display: flex;
  justify-content: center;
  color: rgb(36, 36, 36);
  margin-top: 150px;
}
.nodes-div{
  border-radius: 10px;
  background-color: hsl(0, 0%, 100%);
  padding:15px;
  padding-bottom: 50px ;
  box-shadow: 0 2px 6px 0 hsla(0,0%,0%,0.2);
 
}
.node-container{
  display: flex;
  flex-wrap: wrap;

  /* gap: 20px; */
  /* margin: 20px 0; */
  /* margin-bottom: 100px ; */
  margin-top: 50px ;
 
}

#cluster-area{
  width: 100%;
  margin-top:50px;
  display:flex;
  justify-content: center;
 
}
.cluster-circle, .node-circle, .pod-circle{
  background-color:  #e8f5ee;
  margin: 0 auto;
  border: 3px solid #31a870;
  box-shadow: 0 4px 6px 0 hsla(0,0%,0%,0.2);
  color: hsl(0, 0%, 25%) ;
  font-size: large;

}
.cluster-circle:hover, .node-circle:hover .pod-circle:hover{
  background-color:  #31a870;
}
.cluster-circle{
  width: 300px;
  height: 300px;
  border-radius: 150px;
}
.node-circle{
  width: 200px;
  height: 200px;
  border-radius:100px;
  margin-bottom: 20px;;
}
.pod-circle{
  width: 120px;
  height: 120px;
  border-radius:60px;
  margin-bottom: 20px;;
}
#graph-area{
  width: 100%;
  /* background-color: hsl(0, 0%, 100%); */
  display:flex;
  margin-top: 20px;
  justify-content: space-around;
  border-radius: 10px;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0 2px 6px 0 hsla(0,0%,0%,0.2);
  padding: 30px;
}
#graphs{
  display:flex;
  flex-direction:column;
  width:100%;

}
canvas {width:500px; }






/* AddCluster Modal Styles */
.modal {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
}

.modalContent {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
}

.modalContent h2 {
  color: #333;
  font-size: 24px;
  margin-bottom: 10px;
}

.modalContent p {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;

}
.closeButton {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.closeButton:hover,
.closeButton:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}



/* Read More Button Styles */
.readMore button {
  /* margin-bottom: 10px;
  background-color: #5d6a7c;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  width: 150px; */

  margin-bottom: 15px;
  text-decoration: none;
  color: #343940; /* Adjust color as needed */
  font-size: small;
  border: 1px solid #5d6a7c;
  padding: 5px;
  cursor: pointer;
  border-radius: 5px;
}

.readMore button:hover {
  color: #1F87CA;
  border: 1px solid #19648D;
}

