body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fffefc;
}

.marquee-container {
    width: 100%;
    /* Or any desired width */
    overflow: hidden;
    /* Hide content that overflows */
}

.marquee-content {
    white-space: nowrap;
    /* Prevent text wrapping */
    animation: marquee 10s linear infinite;
    /* Adjust animation duration and timing */
    font-size: 50px;
    /* Set the desired font size */
    color: #333;
    /* Set the desired font color */
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #ffcc70, #ff9671, #ffc75f);
    padding: 16px 24px;
    border-bottom: 4px solid #ff6f61;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 10px;
}

.shop-title {
    font-size: 26px;
    font-weight: bold;
    color: #4d2600;
    text-shadow: 1px 1px #fff5cc;
}

.search-box {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 10px 16px;
    border: 2px solid #ffd166;
    border-radius: 30px;
    background-color: #fff8e1;
    color: #5f370e;
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-box:focus {
    outline: none;
    border-color: #ff6f61;
    background-color: #fff;
    box-shadow: 0 0 8px #ff9a8b;
}

.dropdown-container {
    position: relative;
}

.dropdown-btn {
    background: #ff6f61;
    color: white;
    border: none;
    font-size: 22px;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dropdown-btn:hover {
    background: #e05c50;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 45px;
    background: #fff8f0;
    border: 2px solid #ffd166;
    border-radius: 10px;
    min-width: 180px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: #5f370e;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background-color: #ffe9d6;
    color: #ff6f61;
}