html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
.dashboard-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #4CAF50;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.dashboard-title {
    margin: 0;
    font-size: 28px;
}

.chart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.chart-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    width: calc(50% - 40px);
    min-width: 400px;
    margin-bottom: 20px;
}

.chart-title {
    margin-top: 0;
    color: #4CAF50;
    font-size: 18px;
    text-align: center;
}

.kpi-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.kpi-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 15px 20px;
    text-align: center;
    min-width: 200px;
    flex-grow: 1;
}

.kpi-value {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    margin: 10px 0;
}

.kpi-label {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .chart-card {
        width: 100%;
        min-width: auto;
    }
}
.fb-post {
    width: 500px;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 15px;
}

.post-header {
    display: flex;
    align-items: center;
}

.profile-pic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ccc;
    background-image: url('https://cdn-icons-png.flaticon.com/512/149/149071.png');
    background-size: cover;
    margin-right: 10px;
}

.post-user {
    font-weight: bold;
}

.post-time {
    font-size: 12px;
    color: gray;
}

.post-content {
    margin-top: 10px;
    font-size: 15px;
}

.post-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

.reaction-bar {
    margin-top: 10px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    color: gray;
    font-size: 14px;
}

.cta {
    font-weight: bold;
    color: #2e7d32;
}

.discount {
    background-color: #dff0d8;
    padding: 10px;
    margin-top: 10px;
    border-left: 5px solid #4caf50;
}