:root{
    --background-color: rgba(0, 128, 255, 0.7);
    --text-color: #fff9f9;
    --button-color: rgb(16, 146, 16);
    --button-color-dark: rgb(42, 154, 42);
    --bg-footer: linear-gradient(to bottom, #53a8fd, #0066cc);
    --heading-font-style : 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  
  }

body{
    font-family: "Roboto", sans-serif !important;   
}
.users_headers{
height: 100px;
width: 100%;
/* border: 1px solid red; */
display: flex;
padding-left:10px;
align-items: center;

}
.users_ne{
    padding-left: 12px;
    
height: 60px;
/* top: 449px; */
/* left: 434px; */
gap: 0px;
opacity: 0px;

}
.users_ne>h2{
font-weight: bold;
font-size: 20px;
font-weight: 500;
line-height: 30px;
text-align: left;

}
.users_ne>p{
font-family: Poppins;
font-size: 16px;
font-weight: 400;
line-height: 24px;
text-align: left;

}
.users_headers>img{
width: 80px;
height: 80px;
top: 439px;
border-radius: 50%;
left: 324px;
gap: 0px;
opacity: 0px;

}
.container {
    margin-top: 50px;
  }
  
  .profile-picture {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(111, 113, 115, 0.6);
}
.user-name{
    margin: 20px 30px 0px 0px;
    font-weight: bold;
    color: var(--background-color);
    font-family: var(--heading-font-style);
}
.user-email{
    margin: 0px 0px;
    font-weight: bold;
    color: var(--background-color);

}
  .profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .change-picture-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #007bff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  .profile-info {
    padding-left: 30px;
  }
  
  .profile-info h2 {
    margin-bottom: 10px;
  }
  
  .profile-info p {
    margin-bottom: 20px;
  }
  
  .profile-form .form-group {
    margin-bottom: 20px;
  }
  
  .profile-form .form-control {
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 10px;
  }
  
  .profile-form .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 0;
    padding: 10px 20px;
  }


.userprofile_headers{
    color: var(--background-color);
    /* border: 1px red solid; */
    font-size: 25px;
    font-weight: bold;
    font-family: var(--heading-font-style);

}

/* Styling specifically for the profilerow form */
form.profilerow {
    
    width: 400px;
    /* margin: 50px auto; Centers the form on the page */
    padding: 20px;
    background-color: #ffffff; /* White background for the form */
    border: 1px solid #ddd; /* Subtle border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
  }
  
  form.profilerow label {
    font-size: 14px;
    color: #333; /* Dark text for labels */
    margin-bottom: 5px;
    display: block; /* Ensures label appears above input */
  }
  
  form.profilerow .form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc; /* Subtle border for inputs */
    border-radius: 5px;
    margin-bottom: 15px; /* Space between inputs */
    transition: border-color 0.3s ease;
  }
  
  form.profilerow .form-control:focus {
    border-color: #007bff; /* Blue border on focus */
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Light blue glow */
  }
  
  form.profilerow .co_button {
    width: 100%; /* Full-width button */
    padding: 10px;
    font-size: 16px;
    color: #fff; /* White text */
    background-color: #007bff; /* Blue button */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  form.profilerow .co_button:hover {
    background-color: #0056b3; /* Darker blue on hover */
  }
  
  form.profilerow .co_button:active {
    background-color: #004085; /* Even darker blue on click */
  }
  
  form.profilerow .col-md-6 {
    display: block; /* Stack all form elements vertically */
    width: 100%; /* Full width for each field */
  }
  
  form.profilerow .col-12 {
    text-align: center; /* Centers the button */
  }
  
  /* Responsive Design */
  @media (max-width: 576px) {
    form.profilerow {
      padding: 15px;
      max-width: 90%; /* Make it fit smaller screens */
    }
  }
  