/* =====================
   Login Button Widget CSS - MobRadio
   ===================== */

/* botao-login.css - estilos do widget de login/logout MobRadio */
.mobradio-login-widget-btn {
  width: auto !important;
  background: #007bff !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px;
  font-size: 1.08em;
  font-weight: 500;
  cursor: pointer;
  margin: 10px auto 0 auto;
  display: block;
  transition: background 0.2s;
  box-sizing: border-box;
}

.mobradio-login-widget-btn:hover {
  background: #0056b3 !important;
}

.mobradio-login-widget-btn:active {
  background-color: #0056b3 !important;
  color: #fff !important;
}

.mobradio-logout-btn {
  width: auto !important;
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 0;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
  text-align: center;
  min-width: 80px;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  margin: 0;
  line-height: 1.2;
  height: auto;
}
.mobradio-logout-btn:hover,
.mobradio-logout-btn:active,
.mobradio-logout-btn:focus {
  background: #e9ecef;
  color: #222;
  text-decoration: none;
}
.mobradio-login-widget-link {
  display: inline-block;
  width: auto !important;
  min-width: 80px;
  color: #007bff;
  text-decoration: underline;
  font-size: 1em;
  cursor: pointer;
  transition: color 0.2s;
  text-align: center;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  line-height: 1.2;
  height: auto;
  background: none;
  border: none;
  padding: 0;
}
.mobradio-login-widget-link:hover,
.mobradio-login-widget-link:active,
.mobradio-login-widget-link:focus {
  color: #0056b3;
  text-decoration: underline;
}
.mobradio-logout-link {
  display: inline-block;
  color: #333;
  text-decoration: underline;
  font-size: 1em;
  cursor: pointer;
  transition: color 0.2s;
  text-align: center;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  line-height: 1.2;
  height: auto;
  background: none;
  border: none;
  padding: 0;
}
.mobradio-logout-link:hover,
.mobradio-logout-link:active,
.mobradio-logout-link:focus {
  color: #222;
  text-decoration: underline;
}
.mobradio-login-hello {
  font-weight: 500;
  color: #222;
  font-size: 1.08em;
}

/* Modal de confirmação de logout */
.mobradio-logout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobradio-logout-modal {
  background: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 16px #0002;
  min-width: 280px;
  text-align: center;
}
.mobradio-logout-modal-title {
  margin-bottom: 18px;
  font-size: 1.1em;
  color: #222;
}
.mobradio-logout-modal-btn {
  width: auto !important;
  min-width: 90px;
  margin-right: 16px;
  padding: 6px 18px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.mobradio-logout-modal-btn:last-child {
  margin-right: 0;
}
.mobradio-logout-modal-btn:hover,
.mobradio-logout-modal-btn:focus {
  background: #0056b3;
}
.mobradio-logout-modal-btn-cancel {
  background: #eee;
  color: #333;
}
.mobradio-logout-modal-btn-cancel:hover,
.mobradio-logout-modal-btn-cancel:focus {
  background: #ddd;
  color: #111;
}

/* Popup de sucesso de cadastro */
.mobradio-register-success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobradio-register-success-modal {
  background: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 16px #0002;
  min-width: 320px;
  max-width: 90vw;
  text-align: center;
}
.mobradio-register-success-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 12px;
}
.mobradio-register-success-desc {
  font-size: 1em;
  color: #333;
  margin-bottom: 18px;
}
.mobradio-register-success-footer {
  width: 100%;
  display: flex;
  justify-content: center;
}
.mobradio-register-success-close {
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 7px 22px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.mobradio-register-success-close:hover,
.mobradio-register-success-close:focus {
  background: #0056b3;
}

/* Popup de sucesso de login */
.mobradio-login-success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobradio-login-success-modal {
  background: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 16px #0002;
  min-width: 320px;
  max-width: 90vw;
  text-align: center;
}
.mobradio-login-success-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 12px;
}
.mobradio-login-success-desc {
  font-size: 1em;
  color: #333;
  margin-bottom: 18px;
}
.mobradio-login-success-footer {
  width: 100%;
  display: flex;
  justify-content: center;
}
.mobradio-login-success-close {
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 7px 22px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.mobradio-login-success-close:hover,
.mobradio-login-success-close:focus {
  background: #0056b3;
}

/* ===== Responsive Styles ===== */
