.business-card {
  display: flex;
  flex-direction: column;
  background-color: var(--section-background-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 2px 5px var(--shadow-color);
  padding: 20px;
  max-width: 400px;
  margin: 0 auto;
}
.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.profile-photo {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  object-fit: cover;
}
.card-info h4 {
  margin: 0;
  color: var(--text-color);
}
.card-info p {
  margin: 5px 0 0;
  color: var(--accent-color);
}
.card-body {
  color: var(--text-color);
}
.card-body p {
  margin: 0;
}

/* Sections & Entries (Shared for Resume and Profile pages) */
.sections-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}
.section {
  flex: 1 1 45%;
  box-sizing: border-box;
  background-color: var(--section-background-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px var(--shadow-color);
}
.entries-container {
  display: flex;
  justify-content: center;
}
.entries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.entry {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  flex: 1 1 25%;
  box-sizing: border-box;
  background-color: var(--entry-background-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}
.entry-header {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  padding: 5px;
}
.entry-header p {
  margin: 2px 0;
}
.entry-description {
  flex-grow: 1;
}
.entry-grouped {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
/* Progress Styles */
progress[value] {
  width: 100px;
  height: 20px;
  margin-left: 10px;
  accent-color: var(--accent-color);
}

/* Footer Styles (Profile Page) */
footer {
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
  text-align: center;
  padding: 20px;
  border-top: 1px solid var(--border-color);
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  margin-top: 20px;
}
footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
footer nav ul li {
  display: inline;
}
footer nav ul li a {
  color: var(--footer-link-color);
  text-decoration: none;
}
footer p {
  margin-top: 10px;
  font-size: 0.9em;
}

/* Icon Sizing */
.icon16 {
  width: 12px;
  height: 12px;
  object-fit: cover;
}
