

/*=============================================================================


Agenda Microservice Stylesheet


============================================================================= */


.translate-btn {
    position: fixed;
    top: 200px;
    right: 20px;
    z-index: 99999;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 20px;
    border: none;
    border-radius: 50px;

    background: rgba(0, 123, 255, 0.92);
    backdrop-filter: blur(10px);

    color: white;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
      0 8px 20px rgba(0,0,0,0.18),
      0 2px 6px rgba(0,0,0,0.12);

    transition: all 0.25s ease;
  }

  .translate-btn:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgba(0, 98, 204, 0.95);
  }

  .translate-btn:active {
    transform: scale(0.98);
  }

  .translate-btn.loading {
    opacity: 0.7;
    pointer-events: none;
  }

  .btn-icon {
    font-size: 18px;
  }

  .translate-status {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 99999;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;

    background: rgba(33, 37, 41, 0.95);
    color: white;

    border-radius: 16px;

    box-shadow:
      0 8px 20px rgba(0,0,0,0.25);

    font-size: 14px;
    font-weight: 500;

    animation: slideUp 0.25s ease;
  }

  .hidden {
    display: none;
  }

  .spinner {
    width: 18px;
    height: 18px;

    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid white;
    border-radius: 50%;

    animation: spin 0.8s linear infinite;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .translate-success {
    background: rgba(25, 135, 84, 0.95);
  }