/* Base styles */
:root {
    --primary-color: #c73a52;
    --header-bg: #FAFAFA;
    --body-text: #666666;
    --title-text: #000000;
    --white: #ffffff;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--white);
    color: var(--body-text);
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--title-text);
  }
  
  .app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
  }
  
  /* Header styles */
  .fixed-header {
    background-color: var(--header-bg);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .profile-pic img {
    width: 40px;
    height: 40px;
    object-fit: cover;
  }
  
  .user-name {
    font-size: 14px;
    margin-bottom: 2px;
  }
  
  .user-email {
    font-size: 12px;
    color: var(--body-text);
  }
  
  .menu-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 20px;
    z-index: 1100; /* Ensure button stays above the fullscreen menu */
  }
  
  .menu-btn:focus {
    box-shadow: none;
  }
  
  /* Fullscreen menu */
  .fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  
  .fullscreen-menu.active {
    transform: translateX(0);
  }
  
  .menu-header {
    background-color: var(--header-bg);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
  }
  
  .menu-close-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 20px;
  }
  
  .menu-content {
    flex: 1;
    padding: 20px 15px;
  }
  
  .menu-item {
    padding: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-decoration: none;
    color: var(--title-text);
  }
  
  .menu-item i {
    color: var(--primary-color);
    width: 30px;
    font-size: 18px;
  }
  
  .profile-submenu {
    padding-left: 30px;
    background-color: rgba(0,0,0,0.02);
    display: none;
  }
  
  .profile-submenu.active {
    display: block;
  }
  
  .search-container {
    padding: 20px 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .search-container .input-group {
    border-radius: 25px;
    overflow: hidden;
  }
  
  .search-container .form-control {
    border-radius: 25px 0 0 25px;
    border: 1px solid rgba(0,0,0,0.1);
  }
  
  .search-container .btn {
    border-radius: 0 25px 25px 0;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
  }
  
  /* Main content styles */
  .main-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 15px 80px;
  }
  
  .section-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  /* Creator blocks */
  .creator-block {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    min-height: 100px;
    box-shadow: var(--shadow-md);
  }
  
  .creator-block h3 {
    margin: 0;
    color: var(--white);
    font-size: 18px;
  }
  
  .blue-gradient {
    background: linear-gradient(135deg, #4A90E2, #5E72E4);
  }
  
  .green-gradient {
    background: linear-gradient(135deg, #43A047, #66BB6A);
  }
  
  .purple-gradient {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
  }
  
  .orange-gradient {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
  }
  
  /* Icon boxes */
  .categories-section, .tools-section {
    background-color: var(--header-bg);
    padding: 20px 15px;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  
  .icon-box {
    background-color: var(--white);
    border-radius: 10px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100px;
  }
  
  .icon-box i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
  }
  
  .icon-box h4 {
    font-size: 14px;
    margin: 0;
  }
  
  /* Footer styles */
  .fixed-footer {
    background-color: var(--header-bg);
    padding: 12px 0 8px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
    z-index: 1000;
  }
  
  .footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--body-text);
  }
  
  .footer-link i {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 4px;
  }
  
  .footer-link span {
    font-size: 12px;
  }
  
  .footer-link.active {
    color: var(--primary-color);
  }
  
  /* Responsive adjustments */
  @media (max-width: 576px) {
    .creator-block {
      min-height: 80px;
    }
  }

  /* directory.css - Specific styles for Directory Page */

/* Directory Header Styles */
.directory-header {
    background-color: white;
    padding: 15px;
    margin-bottom: 20px;
    position: sticky;
    top: 60px; /* Below the main header */
    z-index: 900;
}

.search-container {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.search-container input {
    border: none;
    outline: none;
    flex-grow: 1;
    color: #000;
    padding: 0 10px;
}

.search-container input::placeholder {
    color: #b0b0b0;
}

.search-icon {
    color: #c73a52;
    font-size: 16px;
}

.filter-buttons {
    display: flex;
    overflow-x: auto;
    padding-bottom: 5px;
}

.filter-btn {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 5px 15px;
    margin-right: 10px;
    font-size: 14px;
    white-space: nowrap;
    color: #666;
    display: flex;
    align-items: center;
}

.filter-btn i {
    margin-right: 5px;
    font-size: 12px;
}

/* Creator Card Styles */
.creator-card {
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.creator-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.creator-profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f8f8f8;
}

.creator-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
}

.creator-tag {
    background: linear-gradient(135deg, #FFD700, #FFC000);
    color: #8B4513;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-left: 8px;
}

.creator-tag i {
    font-size: 10px;
    margin-right: 4px;
}

.creator-category {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.creator-stats {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
}

.creator-stats i {
    margin-right: 5px;
    font-size: 14px;
}

.add-to-campaign {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c73a52;
    border: 1px solid #e0e0e0;
    background-color: white;
    transition: all 0.2s;
}

.add-to-campaign:hover {
    background-color: #c73a52;
    color: white;
}

/* Campaign Dropdown Styles */
.campaign-dropdown {
    position: absolute;
    right: 15px;
    top: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px 0;
    z-index: 1000;
    width: 200px;
    display: none;
}

.campaign-dropdown.show {
    display: block;
}

.campaign-dropdown-item {
    padding: 8px 15px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.campaign-dropdown-item:hover {
    background-color: #f8f8f8;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .creator-profile-img {
        width: 50px;
        height: 50px;
    }
    
    .creator-name {
        font-size: 15px;
    }
    
    .creator-tag {
        font-size: 9px;
        padding: 2px 6px;
    }
}

/* Scrollbar styling for filter buttons */
.filter-buttons::-webkit-scrollbar {
    height: 4px;
}

.filter-buttons::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.filter-buttons::-webkit-scrollbar-thumb {
    background: #c73a52;
    border-radius: 2px;
}