body {
    background-color: white;
    color: black;
    font-family: "Times New Roman", Times, serif;
}

ul {
    margin: 0;
}

ul.dashed {
    list-style-type: none;
}

ul.dashed > li {
    text-indent: -5px;
}

ul.dashed > li:before {
    content: "-";
    text-indent: -5px;
}

.bottom {
    position: fixed;
    bottom: 2px;
}

p {
    font-size: 18px;
    margin: 0px;
    padding: 0px;
}

a:visited { 
    text-decoration: none; 
    color: blue; 
}

.container {
    padding-left: 15px;
}

/* Page layout with sidebar */
.page-wrapper {
    display: flex;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    padding-bottom: 60px;
}

/* Sponsorship Banner */
.sponsorship-banner {
    width: 200px;
    flex-shrink: 0;
    border-left: 1px solid #000;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Random Logo in Sponsorship Banner */
.logo-header {
    margin-bottom: 0px;
}

.logo-header img {
    width: 100%;
    height: auto;
}

.sponsorship-banner-title {
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.sponsor-item {
    display: block;
}

.sponsor-item img {
    width: 100%;
    height: auto;
    display: block;
}

.sponsor-item .sponsor-text {
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .page-wrapper {
        flex-direction: column;
        overflow-x: hidden;
    }

    .main-content {
        min-height: 100vh;
        padding-bottom: 60px;
    }

    .sponsorship-banner {
        width: 100%;
        border-left: none;
        border-top: 1px solid #000;
        padding: 30px 15px;
        box-sizing: border-box;
    }

    .logo-header {
        display: flex;
        justify-content: center;
    }

    .logo-header img {
        max-width: 100%;
        width: 100%;
    }

    .sponsorship-banner-title {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
}