body {
  background-color: rgba(40, 50, 60, 1);
  background-image: linear-gradient(
    135deg,
    rgba(40, 50, 60, 1) 0%,
    rgba(45, 58, 72, 0.6) 20%,
    rgba(42, 52, 70, 0.5) 40%,
    
    rgba(48, 56, 68, 0.55) 60%,
    rgba(43, 51, 65, 0.5) 80%,
    rgba(40, 50, 60, 1) 100%
  );

  background-attachment: fixed;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* General text elements */
.table, tr, table, tbody, thead, td, th,
small, span, p, h1, h2, h3, h4, h5, h6,
ul, li, sup, sub, label,
.nav-link, .page-link, .navbar-phone-item, .nav-text,
.btn, .form-control, .input-group, .nav-item,
form, div, .tabList, .card-title, .card-button,
.custom-control-label, .hoverStyle,
.list-group-item, .list-group-item-action,
.list-group-item-action:hover, .list-group-item-action:focus, .list-group-item-action.active,
input::placeholder, .form-control::placeholder, ::-ms-input-placeholder {
  color: white !important;
}

/* Links and buttons */
a, button {
  color: white !important;
}

/* FontAwesome icons */
.fas, .fa-solid, .fa-regular, .fa-brands, i {
  color: white !important;
}

/* Input group text and icons */
.input-group-text,
.input-group-text i,
.input-group-text .fas,
.input-group-text .fa-solid,
.input-group-text .fa-regular,
.input-group-text .fa-brands {
  color: white !important;
}

/* Input elements */
input,
input[type="text"], textarea, option, select, input[type="search"], input[type="url"], input[type="tel"],
input::placeholder,
input[type="date"], input[type="phone"], input[type="email"],
input[type="password"], input[type="number"], input[type="file"],
input[type="checkbox"], input[type="radio"], input[type="time"] {
  color: white !important;
}

/* Override Bootstrap text color classes */
.text-primary, .text-secondary, .text-light, .text-dark, .text-muted, .text-white {
  color: white !important;
}

/* Hover states */
.list-group-item-action:hover {
  background-color: rgba(60, 70, 80, 1);
  cursor: pointer;
  color: rgba(245, 245, 245) !important;
}

/* Remove button */
.remove-button,
.remove-button i {
  border: none;
  color: red !important;
}

/* Dropdown and card backgrounds */
option,
select,
.dropdown-menu,
.card,
.dropdown-item:hover,
.list-group,
.list-group-item,
.card-body {
  background-color: rgba(50, 60, 70, 1);
  color: rgba(245, 245, 245) !important;
}

/* Card headers and footers */
.card-header,
.card-footer {
  background-color: rgba(45, 55, 65, 0);
  color: rgba(245, 245, 245) !important;
}

/* Modal styling */
.modal-content,
.modal-header,
.modal-body,
.modal-footer {
  background-color: rgba(40, 50, 60, 1);
  color: white !important;
  border-color: rgba(75, 75, 75, 1);
}

/* Button styling */
.btn-light {
  color: white !important;
}

/* Hover animations */
.hoverStyle:hover {
  cursor: pointer;
  color: rgba(195, 195, 195) !important;
}

@keyframes save-button {
  from {
    color: rgba(235, 235, 235, 1);
  }
  to {
    color: rgba(0, 200, 0, 0.8) !important;
  }
}

.card-button {
  color: white;
}

.card-button:hover {
  color: rgba(0, 200, 0, 0.8);
  animation-name: save-button;
  animation-duration: 400ms;
}

.card-button-red:hover {
  color: rgba(200, 0, 0, 0.8);
  animation-name: save-button;
  animation-duration: 400ms;
}

@keyframes close-icon {
  from {
    color: white;
  }
  to {
    color: red !important;
  }
}

.close-icon:hover {
  color: red !important;
  animation-name: close-icon;
  animation-duration: 200ms;
}

/* Form button */
.form-button {
  background-color: rgba(30, 220, 50, 0.1);
  font-size: 1.2em;
}

/* Table specific */
tbody {
  color: white !important;
}

.table-warning {
  color: black !important;
}

/* Pagination */
.page-item,
.page-item disabled,
.page-link {
  border: 1px solid rgba(75, 75, 75, 1);
  color: white;
  background-color: rgba(45, 55, 65, 1) !important;
}

/* Active navigation */
.nav-link.active {
  background-color: rgba(0, 0, 0, 0) !important;
}

/* Status text for muted/disabled states */
.status-muted {
  color: rgba(200, 200, 200, 1) !important;
}

/* Timestamp page specific styles */
.timestamp-card {
  transition: all 0.3s ease;
  border-radius: 12px !important;
  overflow: hidden;
}

.timestamp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.timestamp-card .card-header {
  background: linear-gradient(135deg, rgba(40, 50, 60, 1) 0%, rgba(60, 70, 80, 1) 100%) !important;
  border-bottom: none !important;
}

.timestamp-card .card-footer {
  background-color: rgba(50, 60, 70, 1) !important;
  border-top: 1px solid rgba(75, 75, 75, 1) !important;
}

.time-entry {
  padding: 0.75rem;
  background-color: rgba(45, 55, 65, 1);
  border-radius: 8px;
  border: 1px solid rgba(75, 75, 75, 1);
}

.sick-indicator {
  background-color: rgba(45, 55, 65, 1);
  border-radius: 8px;
  border: 1px solid rgba(75, 75, 75, 1);
}

.time-registration-form {
  border-radius: 16px !important;
  overflow: hidden;
}

.time-registration-form .card-header {
  background: linear-gradient(135deg, rgba(25, 135, 84, 1) 0%, rgba(40, 167, 69, 1) 100%) !important;
  border-bottom: none !important;
}

.form-section {
  background-color: rgba(45, 55, 65, 1);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(75, 75, 75, 1);
}

.section-title {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sick-toggle-card {
  background-color: rgba(40, 50, 60, 1) !important;
  border-color: rgba(75, 75, 75, 1) !important;
}

.empty-state {
  padding: 3rem 1rem;
}

.empty-state i {
  color: rgba(150, 150, 150, 1) !important;
}

/* Button enhancements */
.btn-success {
  background: linear-gradient(135deg, rgba(25, 135, 84, 1) 0%, rgba(40, 167, 69, 1) 100%) !important;
  border: none !important;
  transition: all 0.3s ease !important;
}

.btn-success:hover {
  background: linear-gradient(135deg, rgba(20, 110, 70, 1) 0%, rgba(30, 140, 55, 1) 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3) !important;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Form enhancements */
.input-group-lg .input-group-text {
  border-radius: 8px !important;
}

.form-control:focus {
  border-color: rgba(40, 167, 69, 0.5) !important;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

/* Logs page specific styles */
.logs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.logs-header {
  border-bottom: 2px solid rgba(75, 75, 75, 1);
  padding-bottom: 1rem;
}

.logs-header h3 {
  font-weight: 700;
  color: white !important;
  font-size: 1.75rem;
}

.logs-table-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.logs-table {
  margin-bottom: 0;
}

.table-dark {
  background: rgba(75, 75, 75, 1) !important;
  background-color: rgba(75, 75, 75, 1) !important;
}

.logs-table-head {
  background: linear-gradient(135deg, rgba(50, 60, 70, 1) 0%, rgba(60, 70, 80, 1) 100%) !important;
  border-bottom: 2px solid rgba(75, 75, 75, 1);
}

.logs-table-head th {
  padding: 1rem !important;
  font-weight: 600;
  color: white !important;
  border: none !important;
  white-space: nowrap;
}

.sort-link {
  color: white !important;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.sort-link:hover {
  background-color: rgba(75, 75, 75, 1);
}

.logs-table tbody tr {
  transition: all 0.2s ease;
  border-color: rgba(75, 75, 75, 1) !important;
}

.logs-table tbody tr:hover {
  background-color: rgba(50, 60, 70, 1) !important;
  transform: scale(1.01);
  box-shadow: inset 0 0 0 1px rgba(75, 75, 75, 1);
}

.log-row td {
  padding: 1rem !important;
  vertical-align: middle;
  border-color: rgba(75, 75, 75, 1) !important;
}

.page-cell {
  text-align: center;
  width: 80px;
}

.action-cell {
  min-width: 150px;
}

.type-cell {
  width: 120px;
}

.created-cell {
  width: 180px;
  color: rgba(200, 200, 200, 1) !important;
}

.user-cell {
  min-width: 200px;
}

.log-badge {
  display: inline-block;
  background-color: rgba(75, 75, 75, 1);
  color: white;
  padding: 0.35rem 0.65rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.log-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.log-type-register {
  background-color: rgba(52, 73, 94, 0.7) !important;
  color: rgba(174, 214, 241, 1) !important;
  border: 1px solid rgba(174, 214, 241, 0.3);
}

.log-type-login {
  background-color: rgba(39, 60, 57, 0.7) !important;
  color: rgba(144, 238, 144, 1) !important;
  border: 1px solid rgba(144, 238, 144, 0.3);
}

.log-type-delete {
  background-color: rgba(70, 39, 39, 0.7) !important;
  color: rgba(255, 127, 127, 1) !important;
  border: 1px solid rgba(255, 127, 127, 0.3);
}

.action-text {
  color: white !important;
}

.user-link {
  color: white !important;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.user-link:hover {
  color: rgba(100, 200, 255, 1) !important;
}

.empty-state-row {
  background-color: rgba(45, 55, 65, 1) !important;
  border: 1px dashed rgba(75, 75, 75, 1) !important;
}

.logs-footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Enhanced Alert Styling */
.alert-popup {
  position: fixed;
  top: 2rem;
  left: 0;
  right: 0;
  z-index: 9999;
  pointer-events: none;
}

.alert-popup .alert {
  pointer-events: auto;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border: none;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 0 !important;
  overflow: hidden;
}

.alert-enhanced {
  background-color: transparent !important;
  padding: 1.25rem !important;
  border-radius: 12px !important;
  backdrop-filter: blur(10px);
  position: relative;
}

.alert-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
}

.alert-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.alert-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  animation: iconBounce 0.9s ease-out;
}

@keyframes iconBounce {
  0% {
    transform: scale(0.8) rotate(-10deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

.alert-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.alert-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.alert-message {
  display: block;
  font-size: 1em;
  opacity: 0.95;
}

.btn-close {
  background: transparent !important;
  border: none;
  padding: 0.5rem !important;
  color: inherit !important;
  opacity: 0.8;
  cursor: pointer;
  margin-top: -0.25rem;
  transition: all 0.2s ease;
  font-size: 1.2rem;
}

.btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.btn-close i {
  display: block;
  color: inherit !important;
}

/* Success Alert */
.alert-success {
  background: linear-gradient(135deg, rgba(25, 135, 84, 0.95) 0%, rgba(40, 167, 69, 0.95) 100%) !important;
  color: #ffffff !important;
}

.alert-success .alert-icon {
  color: rgba(76, 240, 100, 1);
}

.alert-success .btn-close {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Danger Alert */
.alert-danger {
  background: linear-gradient(135deg, rgba(105, 30, 30, 0.95) 0%, rgba(139, 35, 35, 0.95) 100%) !important;
  color: #ffffff !important;
}

.alert-danger .alert-icon {
  color: rgba(255, 127, 127, 1);
}

.alert-danger .btn-close {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Warning Alert */
.alert-warning {
  background: linear-gradient(135deg, rgba(120, 80, 20, 0.95) 0%, rgba(153, 102, 0, 0.95) 100%) !important;
  color: #ffffff !important;
}

.alert-warning .alert-icon {
  color: rgba(255, 215, 100, 1);
}

.alert-warning .btn-close {
  color: rgba(255, 255, 255, 0.9) !important;
}

.logs-footer .pagination {
  background-color: rgba(50, 60, 70, 1) !important;
  border-radius: 8px;
  padding: 0.5rem;
  border: 1px solid rgba(75, 75, 75, 1);
}

.logs-footer .page-link {
  color: white !important;
  background-color: transparent;
  border: 1px solid rgba(75, 75, 75, 1);
  margin: 0 2px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.logs-footer .page-link:hover {
  background-color: rgba(75, 75, 75, 1);
  border-color: rgba(100, 100, 100, 1);
}

.logs-footer .page-item.active .page-link {
  background-color: rgba(40, 167, 69, 1);
  border-color: rgba(40, 167, 69, 1);
}

.logs-footer .page-item.disabled .page-link {
  color: rgba(150, 150, 150, 1) !important;
  background-color: rgba(40, 50, 60, 1);
  border-color: rgba(60, 60, 60, 1);
}

/* Module/Control Panel Item Styles */
.kontrollpanelItem {
  background-color: rgba(50, 60, 70, 0) !important;
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 2rem !important;
}

.kontrollpanelItem:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3) !important;
}

.kontrollpanelItem .card-header {
  background: linear-gradient(135deg, rgba(60, 70, 80, 1) 0%, rgba(70, 85, 100, 1) 100%) !important;
  border: none !important;
  padding: 1.5rem !important;
  border-bottom: 1px solid rgba(75, 75, 75, 1) !important;
}

.kontrollpanelItem .card-title {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: white !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.kontrollpanelItem .card-title i {
  font-size: 1.5rem;
  opacity: 0.9;
}

.kontrollpanelItem .reloadButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(75, 75, 75, 1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white !important;
}

.kontrollpanelItem .reloadButton:hover {
  background-color: rgba(100, 100, 100, 1);
  transform: rotate(-90deg);
}

.kontrollpanelItem .card-body {
  padding: 2rem !important;
  background-color: rgba(50, 60, 70, 1) !important;
}

.kontrollpanelItem .nav-tabs {
  border-bottom: 2px solid rgba(75, 75, 75, 1) !important;
  margin-bottom: 1.5rem;
}

.kontrollpanelItem .nav-tabs .nav-link {
  border: none !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  color: rgba(200, 200, 200, 1) !important;
  transition: all 0.2s ease;
}

.kontrollpanelItem .nav-tabs .nav-link:hover {
  color: white !important;
  border-bottom: 3px solid rgba(75, 75, 75, 1);
  margin-bottom: -2px;
}

.kontrollpanelItem .nav-tabs .nav-link.active {
  color: rgba(100, 200, 255, 1) !important;
  border-bottom: 3px solid rgba(100, 200, 255, 1);
  margin-bottom: -2px;
  background: none !important;
}

.kontrollpanelItem .tab-content {
  padding-top: 1rem;
}

.kontrollpanelItem .list-group-flush {
  background: transparent !important;
}

.kontrollpanelItem .list-group-item {
  background-color: rgba(45, 55, 65, 1) !important;
  border: 1px solid rgba(75, 75, 75, 1) !important;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.kontrollpanelItem .list-group-item:last-child {
  margin-bottom: 0;
}

.kontrollpanelItem .list-group-item-action:hover {
  background-color: rgba(60, 70, 80, 1) !important;
  transform: translateX(4px);
  border-color: rgba(100, 150, 200, 1);
}

.kontrollpanelItem .form-group {
  margin-bottom: 1.5rem;
}

.kontrollpanelItem .form-group label {
  font-weight: 600;
  color: white !important;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.kontrollpanelItem .form-group label i {
  font-size: 0.95rem;
  opacity: 0.8;
}

.kontrollpanelItem .input-group {
  margin-bottom: 1rem;
}

.kontrollpanelItem .card-button {
  padding: 0.75rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  background: linear-gradient(135deg, rgba(40, 167, 69, 1) 0%, rgba(32, 134, 56, 1) 100%) !important;
  border: none !important;
}

.kontrollpanelItem .card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3) !important;
}

.kontrollpanelItem .btn-outline-warning,
.kontrollpanelItem .btn-outline-danger,
.kontrollpanelItem .btn-outline-success {
  border-radius: 8px !important;
  padding: 0.75rem !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}

.kontrollpanelItem .btn-outline-warning:hover {
  transform: translateY(-2px);
}

.kontrollpanelItem .btn-outline-danger:hover {
  transform: translateY(-2px);
}

.kontrollpanelItem .btn-outline-success:hover {
  transform: translateY(-2px);
}

.form-control {
  background-color: transparent;
}

/* Enhanced Form Styling */
.kontrollpanelItem .form-control {
  background-color: rgba(60, 70, 80, 1) !important;
  border: 2px solid rgba(100, 110, 120, 0.5) !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem !important;
  transition: all 0.2s ease !important;
}

.kontrollpanelItem .form-control:focus {
  background-color: rgba(70, 80, 90, 1) !important;
  border-color: rgba(100, 200, 255, 1) !important;
  box-shadow: 0 0 0 3px rgba(100, 200, 255, 0.15) !important;
  color: white !important;
}

.kontrollpanelItem .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.kontrollpanelItem textarea {
  background-color: rgba(60, 70, 80, 1) !important;
  border: 2px solid rgba(100, 110, 120, 0.5) !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem !important;
  transition: all 0.2s ease !important;
  resize: vertical !important;
}

.kontrollpanelItem textarea:focus {
  background-color: rgba(70, 80, 90, 1) !important;
  border-color: rgba(100, 200, 255, 1) !important;
  box-shadow: 0 0 0 3px rgba(100, 200, 255, 0.15) !important;
  color: white !important;
}

.kontrollpanelItem select {
  background-color: rgba(60, 70, 80, 1) !important;
  border: 2px solid rgba(100, 110, 120, 0.5) !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem !important;
  transition: all 0.2s ease !important;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.kontrollpanelItem select:focus {
  background-color: rgba(70, 80, 90, 1) !important;
  border-color: rgba(100, 200, 255, 1) !important;
  box-shadow: 0 0 0 3px rgba(100, 200, 255, 0.15) !important;
  color: white !important;
}

.kontrollpanelItem .form-group {
  animation: slideInForm 0.6s ease-out;
}

@keyframes slideInForm {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tone down animate.style library animations */
.animate__animated.animate__fadeInLeft,
.animate__animated.animate__fadeInRight,
.animate__animated.animate__fadeInDown,
.animate__animated.animate__slideInUp,
.animate__animated.animate__slideInRight,
.animate__animated.animate__zoomIn,
.animate__animated.animate__bounceIn,
.animate__animated.animate__bounce {
  --animate-duration: 1.2s !important;
}

/* Override faster speeds to be moderate */
.animate__animated.animate__faster {
  --animate-duration: 1s !important;
}

.animate__animated.animate__fast {
  --animate-duration: 1.1s !important;
}

.kontrollpanelItem .form-group:nth-child(1) {
  animation-delay: 0.05s;
}

.kontrollpanelItem .form-group:nth-child(2) {
  animation-delay: 0.1s;
}

.kontrollpanelItem .form-group:nth-child(3) {
  animation-delay: 0.15s;
}

.kontrollpanelItem .input-group-text {
  background-color: rgba(80, 90, 100, 1) !important;
  border: 2px solid rgba(100, 110, 120, 0.5) !important;
  border-left: none !important;
  color: rgba(100, 200, 255, 1) !important;
  padding: 0.75rem 1rem !important;
  transition: all 0.2s ease !important;
}

.kontrollpanelItem .input-group:focus-within .input-group-text {
  border-color: rgba(100, 200, 255, 1) !important;
  background-color: rgba(90, 100, 110, 1) !important;
}

.kontrollpanelItem .form-row,
.kontrollpanelItem .row {
  margin-bottom: 0.5rem;
}

.kontrollpanelItem .form-group label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.kontrollpanelItem hr {
  border-color: rgba(100, 110, 120, 0.3) !important;
  margin: 1.5rem 0 !important;
}

/* Global Select Override for Dark Theme - White Arrow */
select, select.form-control {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
}