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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: #ffffff;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}



h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="datetime-local"] {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input[type="submit"] {
  padding: 0.75rem;
  font-size: 1rem;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

input[type="submit"]:hover {
  background-color: #0056b3;
}




.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th,
td {
  padding: 0.5rem;
  border: 1px solid #ccc;
  text-align: left;
}

th {
  font-weight: 500;
  background-color: #f5f5f5;
}

/* Add your existing CSS styles here */

.responsive-table {
  width: 100%;
  border-collapse: collapse;
}

.responsive-table thead th {
  background-color: #f2f2f2;
  text-align: left;
  padding: 8px;
}

.responsive-table tbody td {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
  .responsive-table thead {
    display: none;
  }

  .responsive-table, .responsive-table tbody, .responsive-table tr, .responsive-table td {
    display: block;
    width: auto;
  }

  .responsive-table tr {
    margin-bottom: 30px;
  }

  .responsive-table td {
    text-align: right;
    position: relative;
  }

  .responsive-table td:before {
    content: attr(data-label);
    display: inline-block;
    width: 50%;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
    padding-right: 10px;
  }
}

/* Add this style to hide the Accept/Deny/Delete buttons when a request is accepted or denied */
.responsive-table td button[disabled] {
  display: none;
}

