    * {
        box-sizing: border-box; 
        font-family: "Poppins", sans-serif;
         margin: 0;
          padding: 0; 
    }
    body {
        background: linear-gradient(135deg, #e0b4ee, #9fffc7);
        min-height: 100vh;
        padding: 25px;
    }
    h1 {
        text-align: center;
        color: #1e40af;
        margin-bottom: 25px;
        font-weight: 700;
    }
    .container {
        max-width: 800px; 
        margin: auto;
        background: #faf6f6;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .form-section {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
        justify-content: center;
    }
    .form-section input { 
        padding: 10px;
        border: 2px solid #1e40af;
        border-radius: 8px;
        width: 250px; 
        transition: border-color 0.3s;
    }
    .form-section input:focus {
        border-color: #2563eb;
        outline: none;
    }
    .form-section button {
        background: #1e40af;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: 0.3s;
    }
    .form-section button:hover { 
        background: #1e3a8a;
         transform: translateY(-1px);
         }

    .search-filter {
        display: flex;
        justify-content: center; 
        margin: 15px 0;
        gap: 10px;
    }
    .search-filter input {
        border: 2px solid #93c5fd;
        border-radius: 6px;
        padding: 8px 12px;
        width: 90%; 
        max-width: 400px; 
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 10px;
    }
    th, td {
        border-bottom: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    th { background: #eff6ff; 
        color: #1e3a8a; 
        font-weight: 600;
     }
    tr:nth-child(even) {
         background-color: #f7faff;
         } 
    tr:hover { 
        background: #b8c8d3;
     } 
    .actions button {
        margin-right: 5px;
        border: none;
        padding: 7px 12px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 500;
        transition: 0.2s;
    }
    .edit { 
        background: #4487f1; 
        color: white;
     }
    .edit:hover { 
        background: #2563eb; 
    }
    .delete { 
        background: #ef4444; color: white;
     }
    .delete:hover {
         background: #dc2626;
     }

    @media(max-width: 700px)
    {
        table { 
            font-size: 13px; 
        }
        th, td { 
            padding: 10px 8px; 
        }
        .form-section { 
            flex-direction: column; align-items: center;
         }
        .form-section input { 
            width: 90%;
         }
        .search-filter input { 
            width: 90%;
         }
    }


     footer{
         text-align: center;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      background-color: #5c96b6;
    position: fixed;
  bottom: 0;
  width: 100%;
    }