
/* ============================= */
/* GLOBAL FORM PLAINTES */
/* ============================= */

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11pt;
    color: #000;
    background: #f8f9fa;
}

/* wrapper */
.plaintes-wrapper {
    background: #fff;
}

/* ============================= */
/* HERO */
/* ============================= */

.hero-plaintes {
    background: #11845a;
    min-height: 120px;
}

/* ============================= */
/* FIELDSET (structure papier) */
/* ============================= */

.form-fieldset {
    border: 1px solid #000;
    padding: 15px;
    margin-bottom: 20px;
    background: #fff;
}

.form-fieldset legend {
    font-weight: bold;
    font-size: 12pt;
    color: #000;
    padding: 0 10px;
}

/* ============================= */
/* TABLEAU STYLE FORMULAIRE */
/* ============================= */

.table-form {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.table-form td,
.table-form th {
    border: 1px solid #000 !important;
    padding: 8px;
    vertical-align: top;
    font-size: 11pt;
}

/* headers */
.table-form th {
    background: #fff;
    font-weight: bold;
    text-align: left;
}

/* ============================= */
/* INPUTS */
/* ============================= */

input[type="text"],
input[type="email"],
input[type="file"],
textarea,
select {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11pt;
    padding: 6px;
    border: 1px solid #000;
    border-radius: 0;
    box-shadow: none;
}

/* focus */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border: 1px solid #02529B;
}

/* ============================= */
/* RADIO / CHECKBOX (style papier) */
/* ============================= */

input[type="radio"],
input[type="checkbox"] {
    transform: scale(1.1);
    margin-right: 6px;
}

/* align label */
label {
    font-size: 11pt;
    color: #000;
    font-weight: normal;
}

/* ============================= */
/* SIGNATURE CANVAS */
/* ============================= */

.signature-pad {
    width: 100%;
    border: 1px solid #000;
    background: #fff;
    cursor: crosshair;
}

/* ============================= */
/* BUTTONS */
/* ============================= */

button.btn-primary {
    background: #02529B;
    border: 1px solid #02529B;
    color: #fff;
    font-weight: bold;
}

button.btn-primary:hover {
    background: #01457a;
    border-color: #01457a;
}

button.btn-secondary {
    background: #6c757d;
    color: #fff;
    border: 1px solid #6c757d;
}

/* ============================= */
/* ALERTES */
/* ============================= */

.alert {
    border-radius: 0;
    font-size: 11pt;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #28a745;
}

.alert-danger {
    background: #f8d7da;
    border: 1px solid #dc3545;
}

/* ============================= */
/* PIECES JOINTES TABLE */
/* ============================= */

.table-form input[type="file"] {
    border: none;
}

/* ============================= */
/* PRINT MODE (IMPORTANT PDF LIKE) */
/* ============================= */

@media print {

    body {
        background: #fff;
    }

    .btn,
    button {
        display: none !important;
    }

    .hero-plaintes {
        background: #fff !important;
        color: #000 !important;
    }

    .form-fieldset {
        page-break-inside: avoid;
    }
}
