body {
    font-family: 'Segoe UI', sans-serif;
    background: rgb(255 255 252);
    color: rgb(253, 188, 67);
    padding: 20px;
    direction: rtl;
  }
  .mig{
    width: 200px;
    position: fixed;
    top: -24px;
    left: -1px;
  }
  h1 {
    text-align: inherit;
  }
  button {
    background: rgb(253, 188, 67);
    border: none;
    padding: 10px 20px;
    margin: 10px 0;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
  }
  input, select, textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid rgb(253, 188, 67);
  }
  .student-card {
    border: 1px solid rgb(253, 188, 67);
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
  }
  .modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(187, 177, 177, 0.8);
    justify-content: center;
    align-items: center;
  }
  .modal-content {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
  }