.center-blocks {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-top: 50px;
}
.chart-card {
  /* background-color: #5a76aa; */
  padding: 30px;
  width: 250px;
  height: 100px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart-card img {
  height: 50px;
}
.performance-card {
  display: flex;
  flex-direction: column;
  gap:6px;
  justify-content: space-between;
  align-items: stretch;
  width: 280px;
  background-color: #ffffff;
  border: 1px solid #e1e6f0;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-family: 'Segoe UI', sans-serif;
}

.performance-title,
.date-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.performance-title {
  background-color: #3b5998;
  color: #fff;
}

.date-card {
  background: #f9fafe;
  color: #333;
  border: 1px solid #dbe3f0;
}


.page-details-card {
    background-color: #3b5998;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Segoe UI', sans-serif;
  }
  
  .period-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #3b5998;
    background: #eef3fb;
    border-radius: 6px;
    padding: 8px;
    border: 1px solid #d0daec;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
  }
  
  .profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .profile-circle {
    background-color: #fff;
    color: #3b5998;
    font-weight: bold;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  
  .profile-info .page-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }
  
  .profile-info .username {
    margin: 4px 0 0;
    font-size: 14px;
    color: #dbe3f5;
  }
  
  .meta-info p {
    margin: 6px 0;
    font-size: 14px;
  }
  
  .meta-info .label {
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
  }
  