#word-count {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 12px;
}

.container {
    margin: 50px auto;
    max-width: auto 200px;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #F1F1F1;
    /* text-align: center; */
  }

#copyright {
    text-align: center;
    font-style: italic;
    font-weight: bold;
  }

.button {
    background: green;
    color: #F1F1F1;
  }
.button:hover {
    background: lightseagreen;
    transition: .6s ease-out;
  }
  /* admin table */
.admin-table {
    border-collapse: collapse;
    width: 100%;
  }

.admin-table th, .admin-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
  }

.admin-table th {
    background-color: #f2f2f2;
  }

.admin-table tr:nth-child(even) {
    background-color: #f2f2f2;
  }   

.admin-table td:first-child, .admin-table th:first-child {
    padding-left: 15px;
  }

.admin-table td:last-child, .admin-table th:last-child {
    padding-right: 15px;
  }

.admin-table td {
    font-size: 14px;
    padding-top: 6px;
    padding-bottom: 6px;
    vertical-align: middle;
  }

  /* user table */
td, th {
    padding: 0 10px; /* Adjust as needed */
  }
  
  /* image in login_signup.html template - Not working */
  .small-image {
    max-width: 150px;
    height: auto;
  }