/* Premium Page */
.icon {
    font-size: xx-large;
    display: block;
    margin: auto;
}

.bronze {
    color: var(--premium-bronze);
}

.silver {
    color: var(--premium-silver);
}

.gold {
    color: var(--premium-gold);
}

.diamond {
    color: var(--premium-diamond);
}

/* Header */
.premium-image-header {
    margin-top: 0;
    height: 400px;
}

#premium-header-info {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent shadow effect */
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto; /* Center with margins */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7); /* Add shadow effect */
}

#premium-header-title {
    font-size: 80px;
    text-shadow: 5px 5px 0 #000000; /* Solid shadow slightly below and to the right */
    font-family: "Poetsen One", sans-serif;
    font-weight: 500;
}

@media (max-width: 768px) {
    #premium-header-title {
        font-size: 50px; /* Adjust font size for smaller screens */
    }

    .premium-image-header {
        height: auto;
        padding-bottom: 20px;
    }

    .left-section {
        margin-left: 0px;
    }

    .page-section-text-div {
        margin-left: 10px !important;
    }
}

.premium-header-background {
    width: 100%; /* Ensure it spans the full width of the header */
    height: auto; /* Ensure it spans the full height of the header */
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: bottom; /* Show the bottom of the image */
    filter: blur(8px) brightness(0.8) saturate(1.5);
}


/* Table */
.overflow-container {
    overflow-x: auto;
    display: flex;
    min-width: 70%;
    max-width: 80vw;
    justify-content: space-around;
    flex-direction: column;
    margin: 0 40px;
    border: 3px solid #1d1d1d;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    margin-top: 30px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    background-color: #1d1d1d;
    border-radius: 10px;
    white-space: nowrap;
    border: 3px solid #1d1d1d;
}
table tr th {
    padding: 10px;
    font-weight: normal;
}

main.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

table tr:nth-child(even) {
    background-color: #1d1d1d;
}

table tr {
    text-align: center;
}

tbody {
    border-radius: 10px;
}

/* Info Div */
.info-table {
    align-content: left; 
    width: 100%; 
    background-color: #1d1d1d; 
}

.info-table-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 40px;
    padding: 20px;
    background-color: #111;
    border-radius: 10px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}