@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/*Profile Icon*/
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.actContainer{
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  background: #fff;
  width: 410px;
  padding: 30px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  max-height: 90vh;
  overflow-y: auto;
}

.actContainer.show{
  display: block;
}

.actContainer .close-btn{
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 18px;
  cursor: pointer;
}
.actContainer .close-btn:hover{
  color: #3498db;
}
.actContainer .text{
  font-size: 35px;
  font-weight: 600;
  text-align: center;
}
.actContainer form{
  margin-top: -20px;
}
.actContainer form .data{
  height: 45px;
  width: 100%;
  margin: 40px 0;
}
form .data label{
  font-size: 18px;
}
form .data input{
  height: 100%;
  width: 100%;
  padding-left: 10px;
  font-size: 17px;
  border: 1px solid silver;
}
form .data input:focus{
  border-color: #3498db;
  border-bottom-width: 2px;
}
form .data textarea{
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid silver;
  resize: vertical;
}
form .data textarea:focus{
  border-color: #3498db;
  border-bottom-width: 2px;
}
form .forgot-pass{
  margin-top: -8px;
}
form .forgot-pass a{
  color: #3498db;
  text-decoration: none;
}
form .forgot-pass a:hover{
  text-decoration: underline;
}
form .btn{
  margin: 30px 0;
  height: 45px;
  width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
form .btn .inner{
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  z-index: -1;
  background: -webkit-linear-gradient(right, #56d8e4, #9f01ea, #56d8e4, #9f01ea);
  transition: all 0.4s;
}
form .btn:hover .inner{
  left: 0;
}
form .btn button{
  height: 100%;
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
form .signup-link{
  text-align: center;
}
form .signup-link a{
  color: #3498db;
  text-decoration: none;
}
form .signup-link a:hover{
  text-decoration: underline;
}

/*User Area*/
.userareabg{
	background-image: url("../../images/bg.jpg");
	background-position: center;
	background-size: cover;
}

.userareafont{
  padding-top: 100px;
  font-size: 36px;
  color: #fff;
}

.device-card{
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn{
  padding: 0%;
}

.history-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #333;
}
.history-table th, .history-table td{
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
}
.history-table th{
  color: #555;
  font-weight: 600;
  background: #f7f7f7;
}