body {
        font-family: Arial, sans-serif;
        padding: 20px;
        font-size: 14px;
        background-color: #1e1e1e;
        color: #ffffff;
    }

    form {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        border: 1px solid #272727;
        border-radius: 10px;
        background-color: #292929;
    }
    
    a {
        color : black;
    }

    form label {
        display: block;
        margin-bottom: 15px;
        font-weight: bold;
    }

    form input,
    form select {
        width: calc(100% - 16px);
        padding: 8px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    form button {
        background-color: #28a745;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
    }

    form button:hover {
        background-color: #218838;
    }

    .table-container {
        overflow-x: auto;
    }

    table {
        border-collapse: collapse;
        width: 100%;
        margin-top: 20px;
        font-size: 10px;
        white-space: nowrap;
        color:black;
    }

    th,
    td {
        border: 1px solid #ccc;
        padding: 5px;
        text-align: left;
        font-size: 12px;
    }

    th {
        background-color: #292929;
        color:white;
    }

    .copy-btn {
        margin-left: 5px;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 12px;
    }

    .copy-btn:hover {
        color: green;
    }

    .btn-export {
        background-color: #28a745;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 20px;
    }

    .btn-export:hover {
        background-color: #218838;
    }
    
    /* DataTables styling */
    .dataTables_wrapper .dataTables_filter input {
        color: white;
        background-color: #333;
        border: 1px solid #555;
    }
    
    .dataTables_wrapper .dataTables_length select {
        color: white;
        background-color: #333;
        border: 1px solid #555;
    }
    
    .dataTables_wrapper .dataTables_info {
        color: #aaa;
    }
    
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        color: white !important;
    }
    
    
    #loading {
    animation: blink 1.5s infinite;
    color : white;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}