.my-configurations {
    display: flex;
    flex-direction: column;
    background-color: #111111;
    height: 100vh;
    overflow: hidden;
    /* Prevent scrolling of the entire container */
}

.myConfig-tab-title-container {
    display: flex;
    /* justify-content: space-between; */
    /* Space between title and close button */
    /* align-items: center; Vertically center-align elements */
    padding: 20px;
    background-color: #111111;
    border-bottom: 1px solid #444;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
    /* width: 100%; */
    /* Ensure it stays on top */
}

.my-config-content {
    flex-grow: 1;
    overflow-y: auto;
    /* Enable vertical scrolling for the content */
    padding: 20px;
    /* margin-bottom: 50px; */
}

.my-config-category {
    margin-bottom: 20px;
}

.my-config-category-title {
    margin-bottom: 10px;
    font-family: 'Conquera', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    color: #D78565;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.my-config-items {
    list-style-type: none;
    padding-left: 0;
}

.my-config-item {
    display: flex;
    justify-content: space-between;
    background-color: #1b1b1b;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 4px;
    color: #fff;
}

.my-config-remove-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.my-config-remove-btn img {
    width: 24px;
    /* Adjust the size of the icon */
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}

.my-config-remove-btn:hover img {
    transform: scale(1.1);
    /* Slightly enlarge the icon on hover */
}

.no-items-text {
    font-style: italic;
    color: #bbb;
    margin: 10px 0;
}

/* Scrollbar styling for Webkit-based browsers */
.my-config-content::-webkit-scrollbar {
    width: 8px;
    /* Width of the scrollbar */
}

.my-config-content::-webkit-scrollbar-track {
    background: #333;
    /* Track color */
    border-radius: 4px;
}

.my-config-content::-webkit-scrollbar-thumb {
    background-color: #555;
    /* Thumb color */
    border-radius: 4px;
    border: 2px solid #333;
}

.my-config-content::-webkit-scrollbar-thumb:hover {
    background-color: #D78565;
    /* Thumb color on hover */
}

/* Scrollbar styling for Firefox */
.my-config-content {
    scrollbar-width: thin;
    scrollbar-color: #555 #333;
}

.close-config-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    /* Push the button to the far right */
}

.close-config-btn img {
    width: auto !important;
    height: 30px !important;
    margin-right: 0 !important;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}

.close-config-btn:hover img {
    transform: scale(1.1);
    /* Slightly enlarge the icon on hover */
}

.myConfig-tab-title {
    display: flex;
    justify-content: space-between;
    /* Space between the title and button */
    align-items: center;
    /* Vertically center the items */
    /* padding: 20px; */
    /* Add some padding for spacing */
    background-color: #111111;
    width: 100%;
    /* Background to match the rest of the panel */
    /* Optional border to separate from the content */
}

.myConfig-tab-title h2 {
    margin: 0;
    font-family: 'Conquera', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    text-align: center;
    color: #D78565;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.config-button.disabled {
    background-color: #ccc;
    /* Light grey to show it's disabled */
    color: #666;
    /* Grey text color */
    cursor: not-allowed;
    /* Show the default pointer */
    pointer-events: none;
    /* Disable pointer events */
    opacity: 0.6;
    /* Make it slightly transparent to indicate disabled state */
}


.packs-info {
    margin-bottom: 20px;
}

.packs-info .my-config-category-title {
    margin-bottom: 10px;
    font-family: 'Conquera', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    color: #D78565;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.packs-info-tile {
    display: flex;
    flex-direction: column;
    background-color: #1b1b1b;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 100%;
    margin-top: 10px;
    /* height: 20em; */
}

.packs-info-tile-image {
    width: 100%;
    /* height: 70%; */
    object-fit: cover;
    height: 13em;
}

.packs-info-tile-title {
    /* font-family: 'Conquera', sans-serif; */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    padding: 10px;
    color: #fff;
    background-color: #111111;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid #D78565
}

.packs-info h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #D78565;
    margin-top: 5px;
    margin-bottom: 10px;
}