body {
    font-family: sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 2rem;
  }
  
  .container {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  input, button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
  }
  
  button {
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  th, td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    text-align: left;
  }
  
  img {
    border-radius: 4px;
  }
  
  .error {
    color: red;
  }
  
  .modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .modal.hidden {
    display: none;
  }
  
  .modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    width: 60% !important;
  }

  .picture {
    display: block;
    margin: 0 auto;
  }
  
  #closeModal {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
  }
  #pagination {
    display: block;
    position: relative;
    margin-top: 20px !important;
  }
  #pagination button {
    margin: 0 4px;
    padding: 6px 10px;
    width: fit-content;
    position: relative;
    display: inline;
    cursor: pointer;
    font-weight: bold;
    border: none;
    border-radius: 4px;
  }
  
  #pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #bbb;
  }