﻿/* Here, the content of the common custom CSS defined into Home - Setup - Display - CSS*/
/* Style général pour le formulaire */
.form-setup {
    width: 80%;
    margin: 20px auto;
}

.form-setup table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.form-setup th, .form-setup td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.form-setup tr:nth-child(even) {
    background-color: #f9f9f9;
}

.form-setup th {
    background-color: #2E64FE;
    color: white;
}

.form-setup .center {
    text-align: center;
    margin-top: 20px;
}

.form-setup input[type="text"], .form-setup select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.form-setup input[type="submit"] {
    background-color: #2E64FE;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.form-setup input[type="submit"]:hover {
    background-color: #1A4FBD;
}

.form-setup .note {
    font-size: 0.9em;
    color: #666;
}
