.dashboard-statistics {
                display: flex;
                justify-content: space-around;
                margin-bottom: 30px;
                gap: 15px;
                flex-wrap: nowrap;
                width: 80vw;
                max-width: 80vw;
                overflow-x: auto;
                position: relative;
                left: 50%;
                right: 50%;
                margin-left: -40vw;
                margin-right: -40vw;
                padding-left: 20px;
                padding-right: 20px;
                box-sizing: border-box;
            }
            .stat-box {
                background: #ffffff;
                padding: 20px;
                border-radius: 12px;
                text-align: center;
                flex: 1 1 0;
                min-width: 150px;
                position: relative;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
                height: 160px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                transition: box-shadow 0.3s ease, background-color 0.3s ease;
                color: #333;
                border: 1px solid #e9ecef;
            }
            .stat-box.active {
                background: #e3f2fd;
                border: 2px solid #0073aa;
            }
            .stat-box:hover {
                box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
            }
            .stat-box h3 {
                margin-top: 0;
                font-size: 16px;
                color: #495057;
                font-weight: 600;
                margin-bottom: 10px;
                line-height: 1.3;
            }
            .stat-box p {
                font-size: 32px;
                color: #0073aa;
                margin: 15px 0;
                font-weight: bold;
            }
            .stat-box .app-subtext {
                font-size: 20px;
                color: #6c757d;
            }
            .tables-container {
                margin-top: 20px;
            }
            .dashboard-table {
                display: none;
            }
            .display {
                width: 100% !important;
            }
            .fa-trash {
                color: red;
            }
            
    .dashboard-button {
        display: block;
        width: auto;
        padding: 12px 20px;
        background: rgba(0, 115, 170, 0.1);
        color: #0073aa;
        border: 2px solid rgba(0, 115, 170, 0.2);
        border-radius: 8px;
        cursor: pointer;
        margin-top: auto;
        font-weight: 600;
        text-decoration: none;
        transition: background-color 0.3s ease, border-color 0.3s ease;
        backdrop-filter: blur(10px);
    }
    .dashboard-button:hover {
        background: rgba(0, 115, 170, 0.2);
        border-color: rgba(0, 115, 170, 0.4);
        color: #0073aa;
        text-decoration: none;
    }
    .tables-container {
        padding: 30px;
        background: #f8f9fa;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 20px;
        border: 1px solid #e9ecef;
    }
    .dashboard-table {
        display: none;
    }
    .fa-eye, .fa-trash {
        margin: 0 5px;
        cursor: pointer;
    }
.dc-change-app, .dc-notify-staff, .dc-remove-from-list, .delete-file {
    display: inline-block;
    margin: 5px 10px;
    font-size: 1.5em;
    color: #0073aa;
}

.dc-change-app:hover, .dc-notify-staff:hover, .dc-remove-from-list:hover, .delete-file:hover {
    color: #005177;
}

.fa-pencil-alt, .fa-envelope, .fa-archive, .fa-eye, .fa-trash {
    cursor: pointer;
}

/* Removed view-blank-application styles */


    .archived-entry, .archived-document {
        background-color: #f8d7da !important; /* Light red background for archived entries */
    }

    .archive-label {
        font-size: 0.9em;
        color: #dc3545;
        font-weight: bold;
        margin-left: 5px;
    }

    /* Enhanced table styling */
    .display {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .display thead th {
        background: #0073aa;
        color: white;
        padding: 15px 10px;
        font-weight: 600;
        text-align: left;
        border: none;
    }

    .display tbody tr {
        transition: background-color 0.3s ease;
    }

    .display tbody tr:hover {
        background-color: #f8f9fa;
    }

    .display tbody td {
        padding: 12px 10px;
        border-bottom: 1px solid #e9ecef;
    }

    .view-application-button {
        background: #0073aa;
        color: white;
        padding: 8px 16px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        display: block;
        text-align: center;
    }

    .view-application-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 115, 170, 0.4);
        color: white;
        text-decoration: none;
        background: #005177;
    }

    .archive-application-button {
        background: #dc3545;
        color: white;
        padding: 8px 16px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        display: block;
        margin-top: 8px;
        text-align: center;
    }

    .archive-application-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
        color: white;
        text-decoration: none;
        background: #c82333;
    }

    .regenerate-pdf-button {
        background: #ff9800;
        color: white;
        padding: 8px 16px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        display: block;
        margin-top: 8px;
        text-align: center;
    }

    .regenerate-pdf-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
        color: white;
        text-decoration: none;
        background: #e68900;
    }

    /* Archive filter styling */
    #archive-filter-form {
        margin-bottom: 20px;
        padding: 15px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    #archive-filter-form label {
        font-weight: 500;
        color: #495057;
        cursor: pointer;
    }

    #view-archived-entries {
        margin-right: 8px;
        transform: scale(1.2);
    }
    
    
#form-10-entries thead:first-child th:first-child
{  
        width: 18% !important;
}




/* CSS */
.button-82-pushable {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
    text-align: center;
    margin: 10px 0px auto;
}

.button-82-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition:
    transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

.button-82-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(
    to left,
    hsl(340deg 100% 16%) 0%,
    hsl(340deg 100% 32%) 8%,
    hsl(340deg 100% 32%) 92%,
    hsl(340deg 100% 16%) 100%
  );
}

.button-82-pushable a, .button-82-pushable a:hover {
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Inherits the color from the parent element */
}


.button-82-front {
  display: block;
  position: relative;
  padding: 5px 15px;
 
  border-radius: 12px;
  font-size: 1.1rem;
  color: white;
  background: hsl(345deg 100% 47%);
  will-change: transform;
  transform: translateY(-4px);
  transition:
    transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
  .button-82-front {

  }
}

.button-82-pushable:hover {
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
}

.button-82-pushable:hover .button-82-front {
  transform: translateY(-6px);
  transition:
    transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.button-82-pushable:hover .button-82-shadow {
  transform: translateY(4px);
  transition:
    transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.button-82-pushable:focus:not(:focus-visible) {
  outline: none;
}

.sidebar-content{
    text-align: center;
}
