#config-container {
    background-color: #383838;
    padding: 30px 60px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#config-container label {
    display: block;
    margin-bottom: 10px;
}

#config-container input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #666;
    border-radius: 5px;
    color: #444343;
}

#config-container .label-container {
    font-weight: bold;
    margin-bottom: 20px;
}

#config-container .next-step {
    margin-top: 10px;
}

#config-container .icon-position {
    margin-left: 10px;
    cursor: pointer;
}

#need-help {
    margin-top: 20px;
    font-size: 1rem;
    cursor: pointer;
}

.roleAdmin {
    display: block;
    margin: 20px;
    background-color: #006C50;
    text-decoration: none;
    color: white;
    padding: 15px;
    border-radius: 15px;
    cursor: pointer;
    width: 500px;
}

.roleAdmin:hover {
    background-color: #02523e;
    transition: background-color 0.3s;
    color: white;
}

.titreRole {
    margin-bottom: 20px;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-row > div {
    margin-left: 1rem;
    margin-right: 1rem;
}

.websites-api {
    height: 113px;
    overflow: auto;
}

.websites-api li {
    color: #000;
    background: #ffffff;
    margin: .5rem 0 .5rem 0;
    padding-left: .5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
}

.websites-api li input {
    width: 10px !important;
    margin-right: .5rem;
}

.websites-api li label {
    width: 100% !important;
}

.websites-api li label, .websites-api li input {
    margin-bottom: 0 !important;
    padding: .5rem 0 .5rem 0;
}

.websites-api li:hover {
    box-shadow: inset 0em 0em 0em 10em rgba(0, 0, 0, 0.3);
}

.websites-api li:first-child {
    margin-top: 0;
}

.websites-api li:last-child {
    margin-bottom: 0;
}

.next-step button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    font-size: 1rem;
}

.next-step button[value="continue"] {
    background-color: #006C50;
}

.next-step button[value="continue"]:hover {
    background-color: #02523e;
}

.delete-btn {
    background-color: #ff4444;
}

.delete-btn:hover {
    background-color: #cc0000;
}

.mt2 {
    margin-right: 10px;
}

#monday-help {
    margin-top: 10px;
    text-align: center;
}

#monday-help a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

#monday-help a:hover {
    color: #cccccc;
    text-decoration: underline;
}

.help-icon {
    cursor: pointer;
    text-decoration: none;
}

.help-icon:hover {
    text-decoration: underline;
    color: #cccccc;
}

.table-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.tableUser {
    width: 100%;
    max-width: 100%;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.tableUser td {
    padding: 10px;
    vertical-align: middle;
    text-align: left;
}

.tableUser th {
    padding: 10px;
    text-align: left;
}

.editButton {
    margin: 0;
}