
.page-content {
  display: flex;              
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: calc(100vh - 60px); 
  padding: 10px;               
  box-sizing: border-box;
  gap: 15px;                   
}

.card {
  flex: 1;
  background: white;
  border: 2px solid #ef5350;
  border-radius: 16px;         
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.page-content > .card {
  margin-bottom: 10px;   
}

button {
  background-color: #ef5350;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: #c62828;
}


#whack-game {
  position: relative;
  width: 100%;
  height: 300px;
  border: 2px dashed #ef5350;
  margin-top: 15px;
  border-radius: 10px;
}

.stress-emoji {
  position: absolute;
  font-size: 2rem;
  cursor: pointer;
}


#anger-input {
  width: 100%;
  height: 400px;
  margin-top: 10px;
  padding: 10px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#shred-animation {
  text-align: center;
  margin-top: 20px;
}
#shred-animation.hidden {
  display: none;
}


* { box-sizing: border-box; }


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: block; 
  min-height: 100vh;
  background-color: #fceaea; 
  font-family: Arial, sans-serif;
}


.navbar {
  width: 100%;
  background-color: #ffd8d8; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.navbar-inner {
  max-width: 1200px;      
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;    
  gap: 12px;
}

.logo {
  color: #a10d0d;
  font-weight: 700;
  font-size: 1.15rem;
}


.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-link {
  color: #a10d0d;
  text-decoration: none;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 6px;
}

.nav-link:hover {
  background: rgba(13,71,161,0.06);
}

.nav-link.active {
  background: rgba(13,71,161,0.12);
  font-weight: 600;
}


.site-content {
  max-width: 1200px;
  margin: 16px auto; 
  padding: 12px;
  box-sizing: border-box;
}


@media (max-width: 760px) {
  .navbar-inner { padding: 10px; }
  .nav-links { gap: 10px; }
  .site-content { margin: 8px; padding: 8px; }
}
