/* Starter styles for the new page */
:root{
  --bg: #f7f7fb;
  --fg: #1a1a1a;
  --accent: #2b6fd6;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0}
body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height:1.5;
  padding:0;
  margin:0;
}
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#fff;
  border-bottom:1px solid #e0e0e0;
  padding:1rem 2rem;
}
.nav-left{
  font-weight:600;
  font-size:1.1rem;
}
  .panel-entries {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.6rem;
    margin-top: 1rem;
  }
  .panel-entries td {
    padding: 0.75rem;
    vertical-align: middle;
  }
  .panel-entries .entry-icon .panel-square {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 2.5px solid gray;
  }

  .entry-icon {
  display: flex;
  flex-direction: column;   /* stack vertically */
  align-items: center;      /* center horizontally */
  justify-content: center;  /* center vertically */
  text-align: center;
  color: gray;
}

  .panel-entries .entry-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
  }
  .panel-entries .entry-count {
    font-weight: bold;
    text-align: right;
    color: darkgray;
  }
  
  .entry-text-meta-item {
    font-size: 0.8rem;
    color: #666;
  }
.nav-right{
  font-size:0.95rem;
}
.nav-link{
  text-decoration:none;
  color: darkgray;
}
.nav-button{
  text-decoration: none;
  color: darkgray;
  border-bottom: 2.5px solid #007bff;
  padding: 2.5px 0px;
  margin-left: 12px;
}

header h1{color:var(--accent);margin:0 0 .25rem}
main{max-width:65ch;margin-top:1rem}
footer{margin-top:2rem;font-size:.9rem;color:#666}


.heading {
  margin-left: 25px;
  text-align: center;
}
.heading h1 {
  font-weight: lighter;
  letter-spacing: 1.2px;
  font-family: noto-sans, sans-serif;
  color: gray;
}

.heading h2 {
  font-weight: lighter;
  letter-spacing: 1.2px;
  font-family: noto-sans, sans-serif;
  color: gray;
  line-height: 10px;
  margin-bottom: 50px;
}

.heading h3 {
  font-weight: lighter;
  letter-spacing: 1.2px;
  font-family: noto-sans, sans-serif;
  margin-top: 50px;
  color: gray;
}

.email-signup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.email-signup input[type="email"] {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.email-signup button {
  background-color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.content {
  border: 1px solid lightgray;
  border-radius: 15px;
  margin: 25px;
  padding: 15px;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.content-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-header-right::before {
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid gray;
}

.content-header-left {
}

.content-header {
  border-bottom: 1px solid gray;
}

.panel-header {
  display: flex;
  justify-content: space-around;
  padding: 15px;
  border-bottom: 1px solid lightgray;
}

.panel-item {
  text-align: center;
  border-bottom: 2.5px solid #007bff;
  font-weight: bold;
}
.panel-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  width: 100%;
}

.panel-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.panel-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  color: #666;
}

.icon-label {
  margin-bottom: 4px;
}

.panel-square {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: gray;
}

.panel-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  margin-left: 45px;
}

.panel-text .ellipsis {
  color: gray;
  text-decoration: none;
}

.panel-right {
  font-weight: 600;
  margin-left: 1rem;
  color: darkgray;
}
