.btn:focus,
.btn:active {
  box-shadow: none !important;
  outline: 0px !important;
}


body {
  font-family: Arial, sans-serif;
}

#loginSection, #registerSection {
  max-width: 300px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[type="text"], input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 10px 15px;
  background-color: #007BFF;
  border: none;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

.clickable {
  color: blue;
  cursor: pointer;
  text-decoration: underline;
}



body {
  font-family: 'Inter', sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

.admin-panel {
  width: 80%;
  margin: 50px auto;
  background-color: #fff;
  box-shadow: 0 4px 12px 0 rgba(0,0,0,0.05);
  padding: 20px;
  border-radius: 8px;
}

h1, h2 {
  color: #333;
  margin-bottom: 20px;
}

h1 {
  text-align: center;
  margin-top: 0;
}

h2 {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
}

.user-entry {
  background-color: #f9f9f9;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  position: relative;
}

button {
  background-color: #007BFF;
  color: #fff;
  border: none;
  padding: 5px 10px;
  margin: 5px;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

.ip-list {
  padding-left: 20px;
}

.ip-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #ddd;
  padding: 5px 0;
}

#accountSettings {
  position: relative;
  float: right;  /* Or you can use flexbox or grid for better layout control */
}

.btn-settings {
  background: none;
  border: none;
  color: #333;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease; 
}

.btn-settings:hover {
  color: #007BFF; 
}

#dropdownContent {
  display: none; 
  position: absolute; 
  top: 35px; 
  right: 0;
  border: 1px solid #ccc;
  background-color: white;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); 
  z-index: 99; 
}

#dropdownContent a {
  color: black;
  padding: 10px 16px;
  text-decoration: none; 
  display: block;
}

#dropdownContent a:hover {
  background-color: #ddd;
}

.hidden {
  display: none;
}

/* General Styling */
.history-entry {
  background-color: #fff;
  margin: 10px 0;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.history-entry:hover {
  background-color: #f6f6f6;
}

/* Styling the Divs inside history-entry */
.history-entry > div {
  margin-bottom: 10px;
  font-size: 14px;
}

/* Styling the date div for better visibility */
.history-entry > div:first-child {
  font-weight: 600;
  color: #007BFF;
  font-size: 16px;
  margin-bottom: 15px;
}

/* Icons (optional) - You can use libraries like FontAwesome */
.date-icon,
.duration-icon,
.ip-icon {
  margin-right: 10px;
}