/* Form Styling for Duelo de Plumas */

/* Judge Selector */
.judge-selector {
    margin-top: 10px;
}
.judges-container {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
.judge-box {
    flex: 1;
    border: 1px solid #e0d8c9;
    border-radius: 4px;
    padding: 15px;
}
.ai-judges {
    background-color: #f5f2ec;
}
.ai-judges h4 {
    color: #a07d41;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e6dcc9;
}
.human-judges {
    background-color: #f2f5ec;
}
.human-judges h4 {
    color: #5e6b4c;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #dce6d0;
}
.judges-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 10px;
}
.judge-item {
    padding: 8px 0;
    border-bottom: 1px dotted #e0d8c9;
}
.judge-item:last-child {
    border-bottom: none;
}
.judge-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.judge-item input[type="checkbox"] {
    margin-right: 8px;
}
.judge-actions {
    padding-top: 10px;
    border-top: 1px solid #e0d8c9;
    text-align: center;
}
.no-judges {
    color: #665e54;
    font-style: italic;
    text-align: center;
    padding: 15px 0;
}
.small-link {
    font-size: 13px;
    text-decoration: none;
    color: #5e6b4c;
}
.small-link:hover {
    color: #44513a;
}
.judge-search {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #e0d8c9;
    border-radius: 4px;
}
.ai-model-selector {
    margin-top: 8px;
    margin-left: 25px;
    padding: 8px;
    background-color: #f7f5f0;
    border-radius: 4px;
    border: 1px solid #e0d8c9;
}
.add-judge-btn {
    margin-top: 8px;
    background-color: #a07d41;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.human-add-btn {
    background-color: #5e6b4c;
    margin-left: 25px;
}
.add-judge-btn:hover {
    opacity: 0.9;
}
.selected-judges {
    margin-bottom: 20px;
    border: 1px solid #e0d8c9;
    border-radius: 4px;
    padding: 15px;
    background-color: #f9f7f3;
}
.selected-judges h4 {
    color: #a3423c;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ead8d5;
}
.selected-judges-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 50px;
}
.selected-judge-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #e0d8c9;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 14px;
}
.selected-judge-item.ai {
    background-color: #f5f2ec;
    border-color: #e6dcc9;
}
.selected-judge-item.human {
    background-color: #f2f5ec;
    border-color: #dce6d0;
}
.selected-judge-item .model-name {
    font-size: 12px;
    color: #a07d41;
    margin-left: 5px;
}
.remove-judge {
    background: none;
    border: none;
    color: #665e54;
    margin-left: 8px;
    cursor: pointer;
    font-size: 16px;
}
.remove-judge:hover {
    color: #a3423c;
}
.no-judges-selected {
    color: #665e54;
    font-style: italic;
    text-align: center;
    padding: 15px 0;
} 