/* Rubric Example Editing */
.examples-list {
    margin: 0.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.example-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.example-input {
    flex: 1;
    padding: 0.5rem;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.example-input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-remove-example {
    width: 32px;
    height: 32px;
    background: #fee2e2;
    border: none;
    color: #dc2626;
    border-radius: 4px;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-remove-example:hover {
    background: #dc2626;
    color: white;
}

.btn-add-example {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-bg);
    border: 1.5px dashed var(--primary);
    color: var(--primary);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-add-example:hover {
    background: var(--primary);
    color: white;
    border-style: solid;
}

.btn-primary {
    padding: 0.625rem 1.25rem;
    background: var(--primary);
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #5046e5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}