/* Add custom base styles if needed */
body {
    transition: background-color 0.3s, color 0.3s;
}

/* Custom styles for Linear-like UI */
.form-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    vertical-align: middle;
    background-origin: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    flex-shrink: 0;
    height: 1rem;
    width: 1rem;
    color: #4f46e5;
    background-color: #fff;
    border-color: #6b7280;
    border-width: 1px;
    border-radius: 0.25rem;
}

.form-checkbox:checked {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
    border-color: transparent;
    background-color: currentColor;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}





#frontend-btn.active, #backend-btn.active {
    background-color: #e0e7ff;
    border-color: #a5b4fc;
    color: #3730a3;
    z-index: 10;
}



/* Add subtle transitions for a better UX */
button, input, textarea, select {
    transition: all 0.2s ease-in-out;
}

button:hover {
    transform: translateY(-1px);
}

#send-btn:hover {
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Custom styles for multi-select */
#target-select {
    padding: 0.5rem;
}

#target-select option {
    padding: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}



#target-select option:checked {
    background-color: #4f46e5;
    color: white;
}

