.highlightedText {
background-color: #f44336;
  color: white; /* Optional: Change the text color for better visibility */
  padding: 5px 7px; /* Optional: Add some padding */
  border-radius: 5px; /* Optional: Make the corners rounded */
  text-decoration: none; /* Remove underline */
   margin: 3px 0; /* Add space above and below the link */
  display: inline-block; /* Ensure the margin applies correctly */
}
.highlightedText:hover {
  background-color: darkred; /* Optional: Add a hover effect */
}

.buttonTest3 {
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
    color: white;
    background-color: #ff6347;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.button {
  background-color: #f44336;;
  border: none;
  color: white;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.profile-table {
	padding-top: 4px;
	padding-bottom: 4px;
	display: flex;
	justify-content: center;
	border-radius: 5px;
	margin-top: 8px;
	margin-bottom: 8px;
	margin-left: 5px;
	margin-right: 5px;
  	background-color: rgb(251, 231, 210);
}
.profile-table td {
  background-color: rgb(251, 231, 210);
}
.profile-table th span {
  background-color: rgb(251, 231, 210);
}
.profile-gif {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 3px;
}
.premium-box{
padding-top: 4px;
	padding-bottom: 4px;
	display: flex;
	justify-content: center;
	border-radius: 5px;
	margin-top: 8px;
	margin-bottom: 8px;
	margin-left: 5px;
	margin-right: 5px;
  	background-color: #fef7e5; 
	font-size: small;
	border: 1px solid #b58c07;
}
.bt-logout{
	background-color: #D93134;
	border-radius: 20px;
}
.btn-logout{
	background-color: #D93134;
	font-size: small;
	color: white;
}

.key-value-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 2px;
  font-size: small;
}

.key-text {
  align-items: center;
  text-align: left;
  font-size: small;
}

.value-text {
  text-align: right;
  color: #555;
  font-size: small;
}

.sec-wel{
	color: black; 
	font-size: medium;
	 display: flex;
  	align-items: center;
  	gap: 2px;              /* spacing between photo and text */
}
	
.welcome-photo {
  width: 20px;           /* adjust size */
  height: 20px;
  border-radius: 50%;    /* makes the image a circle */
  object-fit: cover;     /* prevents stretching */
}
 
