/* Estilo general */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 0px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #007BFF;
}

h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

h2 {
    font-size: 22px;
    margin-top: 30px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

ul, ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

ul {
    list-style-type: disc;
}

ul li, ol li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

ol {
    list-style-type: decimal;
}

dl {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
}

dt {
    font-weight: bold;
    margin-top: 15px;
    color: #007BFF;
}

dd {
    margin-left: 20px;
    margin-top: 5px;
    color: #333;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input, button {
    width: 100%;
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

input[type="text"] {
    width: calc(100% - 22px);
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Contenedor de participantes */
#participants-container {
    margin-bottom: 20px;
}

.participant-input {
    margin-top: 10px;
}

/* Contenedor para copiar enlaces */
.copy-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.participant-input input {
    flex: 1;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    font-size: 14px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 5px;
}

.remove-participant {
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.remove-participant:hover {
    color: #FF4136;
    background-color: #f9f9f9;
}

li a:hover {
    text-decoration: underline;
}
.participant-input {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.participant-input input {
    flex: 1;
}

.remove-participant {
    margin-left: 10px;
    background-color: #FF4136;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    width: auto;
}

.hidden {
    display: none;
}

button#copy-link {
    width: auto;
}
.divider {
    border-bottom: 2px solid #007BFF;
    margin: 30px 0;
}

