#development-alert-banner {
    /* Positioning & Layout */
    position: fixed; /* Keeps the banner visible at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000; /* Ensure it is above all other content */

    /* Styling */
    background-color: #ffcc00; /* Yellow/Orange background for alert */
    color: #333333; /* Dark text */
    text-align: center;
    padding: 10px 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#close-banner-btn {
    /* Close Button Styling */
    cursor: pointer;
    font-weight: bold;
    margin-left: 20px;
    font-size: 20px;
    line-height: 1;
    transition: color 0.2s;
}

#close-banner-btn:hover {
    color: #000000;
}




/* Basic Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #222;
  color: #fff;
}

/* Container layout */
.layout-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar styles */
.sidebar {
  width: 200px;
  background-color: #111;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.sidebar h2 {
  color: #fff;
  margin-bottom: 20px;
}

.sidebar-nav ul {
  list-style: none;
}

.sidebar-nav li {
  margin-bottom: 15px;
}

.sidebar-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.sidebar-nav a:hover {
  color: #4ade80;
}

/* Main content styles */
.main-content {
  flex: 1;
  padding: 20px;
}

/* Header styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.user-actions button {
  margin-left: 10px;
  padding: 10px 15px;
  background-color: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.user-actions button:hover {
  background-color: #2563eb;
}

/* Content boxes styles */
.content-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Friends section */
.friends-section, .item-of-day, .rating-section {
  background-color: #333;
  padding: 15px;
  border-radius: 8px;
  flex: 1 1 300px;
}

/* Example avatars */
.friend-avatar {
  background-color: #555;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  text-align: center;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .layout-container {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
  }
  .sidebar-nav ul {
    display: flex;
    flex-direction: row;
  }
  .sidebar-nav li {
    margin: 0 10px;
  }
  .content-boxes {
    flex-direction: column;
  }
}