body {
    background-color: #f8f9fa;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
}

#results .card {
    margin-bottom: 20px;
}

.alert-info {
    font-size: 1.2em;
    text-align: center;
    padding: 10px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

#togglePassword {
    background: transparent;
    border: none;
    cursor: pointer;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.loading-overlay.active {
    display: flex;
}

.loading-text {
    font-size: 1.5em;
    color: #007bff;
}

.dt-button {
    background-color: #007bff; /* Primary blue */
    color: white; /* White text */
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    margin: 2px;
    font-size: 14px;
    cursor: pointer;
}

#resultsTable td {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 40px;
}
