/* Kumaflow - Webflow UI Localization Styles */

:root {
  --wul-select-arrow: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L5 5L9 1' stroke='%23ececec' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}

/* Base Footer */
.wul-footer {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.45;
  margin-top: 12px;
  margin-bottom: 12px;
  z-index: 100;
  position: relative;
}

/* Designer Footer (Settings Pane) */
.wul-footer--designer {
  padding: 15px 12px;
  color: var(--text-sys-subtle, #9e9e9e);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Simple Footer (Dashboard/Auth) */
.wul-footer--simple {
  max-width: 240px;
  padding: 0 12px;
  color: var(--text-sys-subtle, #565656);
  opacity: 0.65;
  transition: opacity 0.2s ease;
}

.wul-footer--simple:hover {
  opacity: 1;
}

/* Language Selector Dropdown */
.wul-select-wrapper {
  margin-bottom: 8px;
}

.wul-select {
  width: 100%;
  background: #2b2b2b;
  color: #ececec;
  border: 1px solid #3d3d3d;
  border-radius: 4px;
  padding: 4px 32px 4px 8px;
  font-size: 11.5px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--wul-select-arrow);
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.wul-select:hover {
  border-color: #555;
}

/* Messages & Links */
.wul-message {
  margin-bottom: 6px;
}

.wul-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.wul-link {
  color: inherit;
  text-decoration: none;
}

.wul-link:hover {
  text-decoration: none;
}

.wul-footer--simple .wul-links .wul-link:hover {
  color: #146ef5;
}

.wul-footer--designer .wul-links .wul-link:hover {
  color: #ffffff;
}

.wul-meta {
  margin-top: 16px;
  opacity: 0.8;
  font-size: 10px;
}

/* Specific override for Designer footer meta opacity if needed */
.wul-footer--designer .wul-meta {
  opacity: 0.6;
}