* {
	margin: 0;
	padding: 0;
	cursor: url(".png"), auto;
}
body {
    cursor: url(".png"), auto;
    font-family: "Gamja Flower", cursive;
  margin: 0;
}  
input,button,.tab, .suggestion-chip {
  font-family: inherit;
}
}
.browser-window {
  width: 100%;
  height: 100%;
  border: 1px solid #FCC0CB;
  border-radius: 8px;
  overflow: hidden;
  font-family: sans-serif;
}
.tab-bar {
  background: #DE649A;
  display: flex;
  padding: 8px 8px 0;
  gap: 4px;
}
.tab {
  background: #FAC8DC;
  padding: 8px 16px;
  border-radius: 8px 8px 0 0;
  font-size: 12px;
  cursor: pointer;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tab.active {
  background: #FFE8F1;
  font-weight: bold;
}
.new-tab-btn {
  padding: 0 12px;
  cursor: pointer;
  font-weight: bold;
}
.browser-header {
  background: #EB8FB7;
  padding: 10px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
}
.controls {
  display: flex;
  gap: 4px;
}
.nav-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  color: #FFDBED;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.nav-btn:hover {
  background: #e0e0e0;
  color: #000;
}
.nav-btn:active {
  background: #d0d0d0;
}
.nav-btn:disabled {
  color: #aaa;
  cursor: default;
}
.nav-btn:disabled:hover {
  background: transparent;
}
.address-bar {
  flex-grow: 1;
}
.address-bar input {
  width: 100%;
  padding: 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.browser-content {
  padding: 20px;
}
.taskbar {
  height: 45px;
  background: #5C3042;
  display: flex;
  padding: 0 10px;
  align-items: center;
  color: white;
  font-size: 13px;
}
.taskbar-icon {
  padding: 8px 12px;
  margin-right: 5px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.taskbar-icon.active {
  border-bottom: 2px solid #4a90e2;
  background: rgba(255,255,255,0.1);
}
.taskbar-time {
  margin-left: auto;
  font-size: 12px;
}
.page {
      display: none;
      width: 100%; height: 100%;
      padding: 20px; box-sizing: border-box;
      overflow-y: auto;
}
.page.active { 
      display: block
}
.search-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      text-align: center;
}

.mock-search-bar {
      width: 500px;
      padding: 12px 20px;
      border-radius: 24px;
      border: 1px solid #dfe1e5;
      font-size: 16px;
      outline: none;
      box-shadow: 0 1px 6px rgba(32,33,36,0.28);
}
.suggestions {
      margin-top: 20px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
}

.suggestion-chip {
      background: #f8f9fa;
      border: 1px solid #dfe1e5;
      padding: 8px 16px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 14px;
      color: #3c4043;
    }

.suggestion-chip:hover {
      background: #f1f3f4;
      border-color: #dadce0;
      color: #202124;
}
.results-container {
      padding: 20px;
      max-width: 600px;
}

.result-item {
      margin-bottom: 24px;
      font-family: arial, sans-serif;
}

.result-url {
      font-size: 14px;
      color: #202124;
      margin-bottom: 4px;
}

.result-title {
      color: #1a0dab;
      font-size: 20px;
      text-decoration: none;
      cursor: pointer;
}
.result-title:hover {
      text-decoration: underline;
}

.result-snippet {
      font-size: 14px;
      color: #4d5156;
      line-height: 1.58;
}
.back-home {
      margin-bottom: 20px;
      color: #1a0dab;
      cursor: pointer;
      text-decoration: underline;
      display: inline-block;
}
