/* Profile table */
/* profile.css */

#open-profile-modal{
  margin: 10px 0 0 1vw;
  background: url(../image/profile.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 25px;
  border: 1px solid black;
  border-radius: 500px;

}
#signinbtn{
  margin: 20px 0 0 8vw;
 background-color: rgb(20, 118, 247);
 cursor: pointer;
  padding: 8px 15px;
  border: none;
  border-radius: 3px;
  font-size: 15px;
  color: #fff;

}
#signinbtn:hover {

  transform: scale(1.01);
  transition: all 0.3s ease-in-out 0.1s;
     color:rgb(20, 118, 247);
         background: #ffffff;

box-shadow: 10px 5px 5px rgb(26, 24, 24);
}
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 15% auto; /* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	width: 80%; 
}

/* Profile modal styles */

.profile-modal {
    display: block; /* Hide the modal by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Black background with opacity */
  }
  
  .profile-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
  }
  
  .profile-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
  }
  
  .profile-modal-title {
    font-size: 20px;
    font-weight: bold;
  }
  
  .profile-modal-close {
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
  }
  
  .profile-modal-close:hover,
  .profile-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  .profile-modal-body {
    padding: 20px;
  }
  
  .profile-modal-body table {
    width: 100%;
  }
  
  .profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto;
  }
  
  .file-input {
    margin-top: 10px;
    text-align: center;
  }
  
  .file-input input[type="file"] {
    display: none;
  }
  
  .file-input label {
    display: block;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .file-input label:hover {
    background-color: #3e8e41;
  }
  
  @media screen and (max-width: 768px) {
    .profile-modal-content {
      width: 90%;
    }
  }
  


table {
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 18px;
    width: 100%;
    max-width: 800px;
  }
  
  th {
    padding: 10px;
    text-align: left;
    vertical-align: top;
  }
  
  td {
    padding: 10px;
    text-align: left;
    vertical-align: top;
    font-weight: bold;
  }
  
  /* Profile photo */
  .profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 30px auto 0;
  }
  
  .file-input {
    margin: 20px auto;
    width: 200px;
    text-align: center;
  }
  
  .file-input input[type="file"] {
    display: none;
  }
  
  .file-input label {
    display: block;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
  }
  
  .file-input label:hover {
    background-color: #f5f5f5;
  }
  
  .file-input label:active {
    background-color: #ddd;
  }
  