﻿ .champ-de-saisie {
        width: 100px;
        float: left;
    }

    .ligne-de-saisie {
        clear: both;
        width: 300px;
        margin: 10px 10px 10px 10px;
        padding: 10px 10px 10px 10px;
    }

    input {
        width: 200px;
    }

    input, select, textarea {
        width: 200px;
    }

    .search-button {
        width: 300px;
    }

    .button-saisie {
        width: 200px;
    }

    .panel-api {
        float: left;
        padding-left: 10px;
        padding-right: 10px;
    }

        .panel-api button:disabled {
            cursor: not-allowed;
        }

    .resultats {
        clear: both;
    }

    #resultsTableAsap th, #resultsTableAsap td {
        text-align: center;
        vertical-align: middle;
        width: 25px;
    }

    #resultsTableUrgence th, #resultsTableUrgence td {
        text-align: center;
        vertical-align: middle;
        width: 25px;
    }

    #resultsTableJ21 th, #resultsTableJ21 td {
        text-align: center;
        vertical-align: middle;
        width: 25px;
    }

    #resultsTableCommunaute th, #resultsTableCommunaute td {
        text-align: center;
        vertical-align: middle;
        width: 25px;
    }

    .tab {
        overflow: hidden;
        border: 0px solid #ccc;
        background-color: #f1f1f1;
        width: 1500px;
    }

        .tab button {
            background-color: inherit;
            float: left;
            border: none;
            outline: none;
            cursor: pointer;
            padding: 14px 16px;
            transition: 0.3s;
            font-size: 17px;
        }

            .tab button:hover {
                background-color: #ddd;
            }

            .tab button.active {
                background-color: #ccc;
            }

            .tab button:disabled {
                cursor: not-allowed;
            }

    .button-disabled {
        opacity: 0.6;
        pointer-events: none;
    }

    .tabcontent {
        display: none;
        padding: 6px 12px;
        border: 1px solid #ccc;
        border-top: none;
        width: 1500px;
    }

    .loader {
        border: 16px solid #f3f3f3;
        border-top: 16px solid #314C5F;
        border-radius: 50%;
        width: 120px;
        height: 120px;
        animation: spin 2s linear infinite;
        position: absolute;
        z-index: 2;
        left: 50%;
        top: 50%;
    }

    @@keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }