/* Minimal Select3 widget styles */
.select3-container { position: relative; display: inline-block; width: 100%; }
.select3-input { box-sizing: border-box; width: 100%; padding: 8px 10px; border: 1px solid #ccc; border-radius: 6px; background: #fff; font-family: inherit; }
.select3-dropdown { position: absolute; left: 0; right: 0; z-index: 9999; background: #fff; border: 1px solid #e6e6e6; border-radius: 6px; margin-top: 6px; max-height: 260px; overflow: auto; box-shadow: 0 8px 24px rgba(2,10,20,0.08); }
.select3-list { list-style: none; margin: 0; padding: 0; }
.select3-option { padding: 8px 10px; cursor: pointer; border-bottom: 1px solid #f5f5f5; font-size: 0.95rem; }
.select3-option:last-child { border-bottom: none; }
.select3-option.hover, .select3-option:hover { background: #f0f8ff; }
.select3-noresults { padding: 10px; color: #777; }
.select3-clear { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); cursor: pointer; color: #777; font-size: 14px; }
.select3-input[disabled] { background: #f5f5f5; cursor: not-allowed; }
.select3-hidden { display: none !important; }
