@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');


body,html {
  margin-bottom: 70px;
  background-color: #ffffff;
  height: 100%;
  font-family:  'Poppins', sans-serif;
  
}


.row h5{
  background-color: #515050;
  color: #ffffff;
  padding: 15px;
  font-weight: bold;
  margin-top: 50px;
  font-family: 'Poppins', sans-serif; 

  
}
.row {
  padding: 30px;
  margin-left: 0%;
  overflow: hidden;
}



.offset-2 col-8{
  margin-left: 20px;
}

table {
     
    border-collapse: collapse;
    width: 100%;
 margin-left: 0%;
 margin-right: 0%;

    
  }
  
 
  
  th {
    border: 1px solid #ffffff;
    text-align: left;
    padding: 8px;
    font-weight: normal;
    justify-self: center;
    background-color: #797777;
    color: #fff;
    font-family: 'Poppins', sans-serif; 
   
  }

  td{
    border: 0px solid #ffffff;
    text-align: left;
    padding: 8px;
    font-family: 'Poppins', sans-serif; 
    
   
 
  }
  
  tr:nth-child(even) {
    background-color: #dddddd;
  }

  

  /* Button default */
  .styled-button {
    background-color: #F675A8;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }

  /* Hover effect */
      .styled-button:hover {
       background-color: #554994;
      }

  /* Active/focus effect (when the button is clicked or focused) */
  .styled-button:active, .styled-button:focus {
    background-color: #F675A8;
   outline: none;
  }

/* text-input */
  .styled-text-imput {
   padding: 10px;
   border: 1px solid #ccc;
   border-radius: 5px;
   font-size: 16px;
   color: #333;
  }

  /* Focus effect (when the input field is clicked or focused) */
  .styled-text-imput:focus {
   outline: none;
   border-color: #f55587;
   box-shadow: 0 0 5px rgb(245, 85, 135);
  }



/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
/* Adjust table styles for smaller screens */
table {
    width: 100%; /* Make the table width 100% to fit the screen */
}

th, td {
    padding: 5px; /* Decrease padding for smaller screens */
    font-size: 14px; /* Decrease font size for smaller screens */
}

/* Add specific styles for smaller screens */
}

/* Media query for screens smaller than 480px (e.g., smartphones) */
@media (max-width: 480px) {
/* Further adjust table styles for very small screens */
th, td {
    padding: 5px;
    font-size: 12px; /* Further decrease font size for very small screens */
}

/* Add specific styles for very small screens */
}



/* Style the file input container */
.file-upload {
position: relative;
overflow: hidden;
}

/* Style the file input button */
input[type="file"] {
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 0;
font-size: 20px; /* Increase the font size to make it more visible */
cursor: pointer;
opacity: 0;
filter: alpha(opacity=0); /* For IE */
}

/* Style the label to look like a button */
.file-upload-label {
display: inline-block;
padding: 10px 20px;
background-color: #F675A8;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: normal;
}

/* Style the label on hover */
.file-upload-label:hover {
background-color: #f55587;
}

/* Style the label when the file input is focused */
input[type="file"]:focus + .file-upload-label {
outline: none;
border: 2px solid #F675A8;
}

/* Style the edit and delete buttons */
.edit-button, .delete-button {
  padding: 8px 16px;
  background-color: #F675A8;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: normal;
}

/* Style the edit button on hover */
.edit-button:hover {
  background-color: #45c397;
}

/* Style the delete button on hover */
.delete-button:hover {
  background-color: #FF3F56;
}

/* Style the buttons when clicked or focused */
.edit-button:active, .edit-button:focus,
.delete-button:active, .delete-button:focus {
  outline: none;
  background-color: #F675A8;
}


