/**
 * In-App Browser Blocker Styles
 * Custom styles for the blocker page
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.in-app-browser-blocker {
  background: #f0f0f0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blocker-container {
  max-width: 480px;
  width: 100dvw;
  height: 100dvh;
  background: #fff;
  overflow: hidden;
}

.blocker-content {
  padding: 24px 20px;
  position: relative;
  height: 100dvh;
  text-align: center;
}

.blocker-blanket {
  height: calc(100% - 48px);
  position: relative;
}

.blocker-actions {
  position: absolute;
  width: calc(100% - 40px);
  bottom: 24px;
}

.blocker-logo {
  position: absolute;
  width: 100%;
  margin: 30px 0;
  top: 35%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.blocker-logo img {
  max-width: 150px;
  max-height: 80px;
  width: auto;
  height: auto;
}

.debug-info {
  margin-bottom: 20px;
  text-align: left;
}

.debug-info p {
  font-size: 12px;
  color: #666;
  margin: 10px 0;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 5px;
}

.blocker-button {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
}

.help-text {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  text-align: center;
  word-break: break-all;
}
