.elementor-302 .elementor-element.elementor-element-81d345a > .elementor-container > .elementor-column > .elementor-widget-wrap{align-content:flex-start;align-items:flex-start;}.elementor-302 .elementor-element.elementor-element-81d345a{padding:70px 0px 70px 0px;}.elementor-bc-flex-widget .elementor-302 .elementor-element.elementor-element-dd13957.elementor-column .elementor-widget-wrap{align-items:flex-start;}.elementor-302 .elementor-element.elementor-element-dd13957.elementor-column.elementor-element[data-element_type="column"] > .elementor-widget-wrap.elementor-element-populated{align-content:flex-start;align-items:flex-start;}.elementor-302 .elementor-element.elementor-element-a841d4e{text-align:center;}.elementor-302 .elementor-element.elementor-element-a841d4e .elementor-heading-title{color:#FFFFFF;}.elementor-302 .elementor-element.elementor-element-a841d4e > .elementor-widget-container{padding:5% 0% 0% 0%;}.elementor-302 .elementor-element.elementor-element-0ee906a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--background-transition:0.3s;}.elementor-302 .elementor-element.elementor-element-b30f1e7{--display:flex;--background-transition:0.3s;}.elementor-302 .elementor-element.elementor-element-1901243{--display:flex;--background-transition:0.3s;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}@media(min-width:768px){.elementor-302 .elementor-element.elementor-element-1901243{--width:70%;}}@media(max-width:767px){.elementor-302 .elementor-element.elementor-element-81d345a{padding:100px 0px 50px 0px;}}/* Start custom CSS for text-editor, class: .elementor-element-d43d798 */.dashboard_steam_site_menu {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #7c7e82;
    display: flex;
    justify-content: flex-start; /* Align items to the left on desktop */
    flex-wrap: wrap; /* Allows wrapping */
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard_steam_site_menu_link {
    color: #7c7e82;
    border-bottom: 1px solid #7c7e82;
    text-decoration: none;
    padding: 5px;
    white-space: nowrap; /* Prevent wrapping of individual links */
}

.dashboard_steam_site_menu_link:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard_steam_site_menu {
        justify-content: space-around; /* Items evenly spaced on tablets/mobiles */
        font-size: 12px; /* Slightly smaller font for mobile */
    }

    .dashboard_steam_site_menu_link {
        padding: 8px 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .dashboard_steam_site_menu {
        justify-content: center; /* Center align for smaller screens */
        flex-wrap: wrap; /* Wrap items if necessary */
    }

    .dashboard_steam_site_menu_link {
        padding: 10px 0;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-b312281 *//* Wishlist Activity Container */
.wishlist-activity-container {
    width: 100%;
    background-color: #2c2c2c;
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header with title and CSV link */
.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.wishlist-header h2 {
    font-size: 18px;
    color: #fff;
    margin: 0;
}

.wishlist-header a {
    color: #00f;
    text-decoration: none;
}

.wishlist-header a:hover {
    text-decoration: underline;
}

/* Wishlist Rows */
.wishlist-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #444;
}

.wishlist-item {
    font-weight: bold;
    font-size: 14px;
}

.wishlist-value {
    font-size: 14px;
    text-align: right;
}

/* Remove the bottom border from the last row */
.wishlist-row:last-child {
    border-bottom: none;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .wishlist-header h2 {
        font-size: 16px;
    }

    .wishlist-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .wishlist-value {
        margin-top: 5px;
        text-align: left;
    }

    .wishlist-header a {
        font-size: 12px;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-4e0309c *//* Dashboard links section styling */
.dashboard_links {
    margin-top: 20px;
}

/* Styling for each link */
.dashboard_link_item {
    display: block;
    font-size: 16px;
    color: #1E90FF; /* Light blue color for the links */
    margin-bottom: 6px; /* Reduced gap between links */
    text-decoration: none;
    padding: 8px 12px; /* Added padding for a cleaner layout */
    background-color: #333; /* Dark background for the links */
    border-radius: 4px;
    border: 1px solid #444; /* Unified border color */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Hover effect for links */
.dashboard_link_item:hover {
    background-color: #444; /* Darker background on hover */
    border-color: #555; /* Slightly lighter border on hover */
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .dashboard_link_item {
        font-size: 14px;
        padding: 8px 10px; /* Adjusted padding for smaller screens */
    }
}/* End custom CSS */