      body {
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(to top, #faf1fd, #f9dd8a);
        margin: 0;
        padding: 0;
        color: #333;
        padding-top: 80px;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        font-size: 18px;
      }

      .header {
        margin-bottom: 30px;
        text-align: center;
        position: relative;
      }

      .header h1 {
        font-size: 32px;
        color: #4b3f72;
      }

      .subtitle {
        font-size: 16px;
        color: #666;
        margin-top: 5px;
      }

      #clock {
        position: absolute;
        top: 10px;
        right: 10px;
        font-weight: 600;
        color: #4b3f72;
        background-color: rgba(255,255,255,0.6);
        padding: 8px 12px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        font-size: 14px;
      }

      .form-box {
        margin: 20px 0;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      }

      .form-row {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        flex-wrap: wrap;
      }

      .form-left,
      .form-right {
        flex: 1;
        min-width: 400px;
      }

      .form-group1 {
        margin-bottom: 20px;
        padding: 15px 20px;
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        transition: transform 0.2s, box-shadow 0.2s;
      }

      .form-group1 label {
        display: block;
        font-weight: 500;
        margin-bottom: 5px;
      }

      .form-group1 input,
      .form-group1 textarea,
      .form-group1 select {
        width: 100%;
        padding: 10px 12px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(3px);
        font-size: 14px;
        margin-top: 5px;
      }

      .form-group1 textarea {
        resize: none;
        height: 80px;
      }

      .form-group1:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
      }

      #addBtn {
        background-color: rgb(241, 190, 115); 
        color: #fff;
        margin-top: 15px;
        padding: 12px 35px;
        border-radius: 25px;
        border: none;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      }

      #addBtn:hover {
        opacity: 0.85;
        box-shadow: 0 7px 20px rgba(0,0,0,0.25);
          transform: scale(1.05);
      }

      .task-box {
        margin-bottom: 40px;
        text-align: left;
        width: 100%;
      }

      table {
        width: 100%;
        border-collapse: collapse;
        background-color: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(5px);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      }

      thead {
        background-color: rgba(241, 190, 115, 0.8);
        color: #fff;
      }

      th, td {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        text-align: left;
      }

      tbody tr:hover {
        background-color: rgba(255, 255, 255, 0.2);
      }

      table button {
        padding: 6px 12px;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        font-size: 13px;
        font-weight: 500;
        margin: 0 2px;
        color: #fff;
        transition: all 0.3s ease;
      }

      table button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      }

      table button:first-child {
        background: #4CAF50;
      }

      table button:nth-child(2) {
        background: #2196F3;
      }

      table button:last-child {
        background: #F44336;
      }

      .footer {
        padding: 15px 0;
        background-color: #f1be73; 
        color: #333; 
        font-size: 14px;
        text-align: center;
        margin-top: 40px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
      }