/* Browser Styles */
.browser-header {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.browser-address-bar {
  flex: 1;
  height: 36px;
  background: #E5E5EA;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.browser-address-bar input {
  width: 100%;
  background: transparent;
  border: none;
  font-size: 16px;
  color: #000;
  outline: none;
}

.browser-toolbar {
  height: 50px;
  background: #F9F9F9;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.browser-toolbar button {
  background: none;
  border: none;
  font-size: 24px;
  color: #007AFF;
  padding: 5px 20px;
}

.quick-link-btn {
  background: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  color: #007AFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

/* Browser View Styling */
.browser-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.browser-address-bar {
  background: #F2F2F7;
  margin: 10px 16px;
  padding: 8px;
  border-radius: 10px;
  text-align: center;
  font-size: 13px;
  color: #8E8E93;
}

.browser-content {
  flex: 1;
  overflow-y: auto;
}

.web-page {
  padding: 40px 20px;
  background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}

.web-hero {
  text-align: center;
  padding: 40px 0;
}

.web-time {
  font-size: 48px;
  font-weight: 700;
  color: #111;
}

.web-hero h2 {
  font-size: 24px;
  color: #666;
  margin-bottom: 20px;
}

.web-search {
  background: transparent;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
}

.web-search input {
  width: 100%;
  border: none;
  font-size: 16px;
  outline: none;
}

.web-favorites {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.fav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fav-icon {
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fav-item span {
  font-size: 11px;
  color: #666;
}

.web-reading-list {
  margin-top: 40px;
}

.web-reading-list h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.reading-card {
  background: transparent;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reading-thumb {
  width: 60px;
  height: 60px;
  background: #F2F2F7;
  border-radius: 8px;
}

.reading-info h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.reading-info p {
  font-size: 12px;
  color: #8E8E93;
}

.browser-toolbar {
  height: 64px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #E5E5EA;
  font-size: 24px;
  color: var(--accent-blue);
  padding-bottom: 20px;
}
