@import "tailwindcss";

body {
  font-family: Arial, Helvetica, sans-serif;
}

.grainy:before {
  content: "";
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='turbulence' baseFrequency='.07' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 182px;
  opacity: 0.08;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Your custom styles */
.post-status {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}

.post-status p {
  border-right: 2px solid black;
  padding-right: 10px;
  color: red;
  font-weight: 700;
}

.post-status p:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* Custom Scrollbar */
.sidebar::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #6b7280, #374151);
  border-radius: 8px;
  transition: background 0.3s;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #4b5563, #1f2937);
}

.profile-setting {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 20px;
  gap: 30px;
}

.profile-setting .display-card {
  width: 590px;
  box-sizing: border-box;
  padding: 20px;
  background-color: var(--card);
  color: var(--card-foreground);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 1px solid var(--border);
}

.side-bar-display-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Hover effect for better interactivity */
.profile-setting .display-card:hover,
.user-profile-setting .display-card:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15), 0 3px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.display-card .card-heading {
  font-size: 26px;
  text-align: center;
  font-weight: bold;
  margin: 0 0 1rem 0;
}

.avatar-placeholder {
  width: 100px;
  height: 100px;
  background-color: var(--muted);
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.user-profile-setting {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 20px;
  gap: 30px;
}

.user-profile-setting .display-card {
  width: 590px;
  box-sizing: border-box;
  padding: 20px;
  background-color: var(--card);
  color: var(--card-foreground);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 1px solid var(--border);
}

.user-profile-setting .display-card .card-heading {
  font-size: 26px;
  text-align: center;
  font-weight: bold;
  margin: 0 0 1rem 0;
}

.user-profile-setting .avatar-placeholder {
  width: 100px;
  height: 100px;
  background-color: var(--muted);
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 50%;
  border: 2px solid var(--border);
}