/* fanlisting single page styles */


:root{
       --background: white;
       --background-alt: #dfdfdf;
       --backgroundshadow: #808080;
       --highlight: #d91212;
       --highlight-link: #a7cc1f;
       --outline: #b6cc64;
       --text: #535353;
}

/* S C R O L L B A R*/

::-webkit-scrollbar {
    width: 3px;
    height: 7px;
    }
    ::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
    }
    ::-webkit-scrollbar-thumb {
    background: var(--outline);
    border: 0px none #ffffff;
    border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
    background: var(--highlight);
    }
    ::-webkit-scrollbar-thumb:active {
    background: var(--highlight);
    }
    ::-webkit-scrollbar-track {
    background: var(--backgroundshadow);
    border: 0px none #ffffff;
    border-radius: 4px;
    }
    ::-webkit-scrollbar-corner {
    background: transparent;
    }
    
    ::selection {
    color: var(--highlight-link);
    }


/* background */
body {
    background-color: var(--background);
    background-image: url('../images/fan/cabbage/bgstripes.gif');
    background-repeat: repeat;
    margin: 0;
    padding: 20px;
    font-family: 'space grotesk', sans-serif;
    color: var(--text);
}

strong, b, small{
    color: var(--highlight);
}

a{
    text-decoration: underline;
    color: var(--highlight-link);
    transition: all 0.3s ease-in-out;
}

a:hover{
    text-shadow: 0px 0px 1px var(--outline);

}

/* layout: side image on left, content on right, both centered */
.fanlisting-single {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.side-image {
    flex-shrink: 0;
    max-width: 30vw;
}

.side-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.fanlisting-content{
    background-color: var(--background);
    padding: 20px;
    border: 1px solid var(--backgroundshadow);
    flex: 1;
    width: 30vw;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
}

.tab-content {
    max-height: 35vh;
    overflow-y: auto;
    flex: 1;
}

.fanlisting-tabs {
   
}

.disclaimer{
    font-size: 0.8em;
    color: var(--backgroundshadow);
    margin-top: auto;
}

p{
    padding-bottom: 5px;
    padding-top: 5px;
}

code{
    background-color: var(--backgroundshadow);
    padding: 2px 4px;
    color: var(--background);
    font-family: 'Courier New', Courier, monospace;
}

h3, h2{
    padding: 5px 0;
    text-decoration: dotted underline;
    text-decoration-color: var(--outline);
    text-underline-offset: 2px;
    text-decoration-thickness: 4px;
}

.message-success, .message-error{
    color: var(--highlight);
    border-radius: 10px ;
    padding: 10px;
    font-weight: 600;
}

/* members table styling */
.members-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.members-table thead {
    color: var(--highlight);
}

.members-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    text-transform: lowercase;
    border-bottom: 1px solid var(--highlight-link);
}

.members-table td {
    padding: 10px 15px;
}

.members-table tbody tr:last-child td {
    border-bottom: none;
}

.email-hover {
    text-decoration: underline;
    cursor: help;
}

/* mobile responsiveness */
@media (max-width: 768px) {
    .fanlisting-single {
        flex-direction: column;
        padding: 10px;
    }
    
    .side-image {
        max-width: 100%;
        max-height: 50vh;
        width: 100%;
    }
    
    .side-image img {
        max-height: 50vh;
        width: 100%;
        object-fit: contain;
    }
    
    .fanlisting-content {
        max-width: 90vw;
        width: 90vw;
    }
}