﻿/* PWA Prompt Styles */
.pwa-prompt-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pwa-prompt {
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { 
    transform: translateY(20px);
    opacity: 0;
  }
  to { 
    transform: translateY(0);
    opacity: 1;
  }
}
.pwa-prompt {
  display: none;
  background-color: white;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  overflow: hidden;
}

.pwa-prompt-content {
  padding: 25px;
  text-align: center;
}

.pwa-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.pwa-icon {
  margin-bottom: 15px;
}

.pwa-icon svg {
  fill: #4285f4;
}

.pwa-prompt h3 {
  margin: 0 0 10px;
  color: #333;
  font-size: 20px;
}

.pwa-prompt p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.install-btn {
  background-color: #4285f4;
  color: white;
  border: none;
  padding: 12px 24px !important;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.install-btn:hover {
  background-color: #3367d6;
}

.ios-steps {
  text-align: left;
  margin: 20px 0;
  padding-left: 20px;
}

.ios-steps li {
  margin-bottom: 10px;
  color: #555;
}

.ios-dismiss-btn {
  background-color: #f1f1f1;
  color: #333;
  border: none;
  padding: 12px 24px !important;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.ios-dismiss-btn:hover {
  background-color: #e0e0e0;
}

.share-icon {
  display: inline-block;
  background: #f1f1f1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  margin: 0 5px;
}

.pwa-checkbox-container {
  margin-top: 15px;

  font-size: 14px;
  color: #555;
}

.pwa-checkbox-container input[type="checkbox"] {
  width: 14px;
  max-width: 14px;
  overflow: hidden;
}

.pwa-checkbox-container label {
  cursor: pointer;
  user-select: none;
}
 .fok {
  border: 1px solid #333;
  padding: 0px 4px !important;
  border-radius: 4px;
  margin-left: 10px;
  
}