

    .dashboard-box {
        background: #f3ede0;
        border: 1px solid #d9cdb8;
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 25px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    /* HEADER */

    .top-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .top-head h3 {

        margin: 5px 0 0;

        font-size: 26px;

        color: #333;

    }

    .top-buttons {

        display: flex;

        gap: 10px;

    }

    .top-buttons button {

        border: none;

        padding: 8px 20px;

        border-radius: 30px;

        background: #5fb5f2;

        color: #fff;

        font-size: 12px;

        font-weight: bold;

        letter-spacing: 1px;

        cursor: pointer;

        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    }

       .top-buttons button2 {

        border: none;

        padding: 8px 20px;

        border-radius: 30px;

        background: #ff7b00;

        color: #fff;

        font-size: 12px;

        font-weight: bold;

        letter-spacing: 1px;

        cursor: pointer;

        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    }

  .top-buttons button3 {

        border: none;

        padding: 8px 20px;

        border-radius: 30px;

        background: #28a745;

        color: #fff;

        font-size: 12px;

        font-weight: bold;

        letter-spacing: 1px;

        cursor: pointer;

        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    }


    /* CHART */

    .chart-area {

        background: #efe7d8;

        border: 1px solid #d7cab5;

        border-radius: 16px;

        padding: 20px;

        position: relative;

        height: 420px;

    }

    #loading {

        position: absolute;

        top: 50%;

        left: 50%;

        transform: translate(-50%, -50%);

        font-size: 20px;

        color: #666;

    }

    /* TABLE */

    .table-box {
        overflow-x: auto;
    }

    table {
        width: 100%;
        min-width: 900px;
        border-collapse: collapse;
        margin-top: 15px;
    }

    table th {
        background: #e8dcc6;
        padding: 12px;
        text-align: left;
        font-size: 14px;
    }

    table td {
        padding: 12px;
        border-bottom: 1px solid #d7cab5;
        font-size: 14px;
    }

    table tr:hover {
        background: #f7f1e6;
    }

    .search-box {
        display: flex;
        justify-content: flex-end;
        margin-top: 10px;
    }

    .search-box input {
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #ccc;
        width: 250px;
    }

    /* STATUS */

    .active {
        color: green;
        font-weight: bold;
    }

    .expired {
        color: #5fb5f2;
        font-weight: bold;
    }

    /* MOBILE */

    @media(max-width:768px) {

        body {
            padding: 10px;
        }

        .top-head {
            gap: 10px;
        }

        .top-buttons {
            width: 100%;
        }

        .top-buttons button {
            flex: 1;
        }

    }

     button4 {
      border: none;
      width: 170px;
      padding: 12px 35px;
      margin-top: 1rem;
     background-color: #5cb85c;
      border-color: #4cae4c; 
      color: #fff;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;

    
    }

      button4:hover {
      background-color:#345164;
       color:#fff;
      transition: 2.7s;
  }

  .highlight td {
  background-color: #E1F3F3; /* Light red, or your preferred highlight color */
  font-weight: bold;
  font-weight: 900;
}
