/**
 * Telco Management — Cookie Consent Banner Styles
 */

.telco-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(15, 31, 46, 0.95);
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.telco-consent-banner.is-visible {
  transform: translateY(0);
}

.telco-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.telco-consent-msg {
  margin: 0;
  flex: 1;
}

.telco-consent-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.telco-consent-btn {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.telco-consent-btn:hover {
  transform: translateY(-1px);
}

.telco-consent-btn--accept {
  background: #E31B23;
  color: #fff;
}

.telco-consent-btn--accept:hover {
  background: #c4171e;
}

.telco-consent-btn--reject {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.telco-consent-btn--reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.telco-consent-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  font-size: 0.85rem;
  white-space: nowrap;
}

.telco-consent-link:hover {
  color: #fff;
}

.telco-consent-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.telco-consent-close:hover {
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .telco-consent-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem 1rem;
  }

  .telco-consent-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}
