
#routeSection {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    background-color: var(--bg-card);
    border: var(--border);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 2.5vh;
    flex-direction: column;
    padding: 20px;
    border-radius: 3px;
    width: 55%;
    height: fit-content;
    box-shadow: var(--shadow), var(--shadow-gold);

    #objectiveHeader {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        background-color: var(--bg-card-light);
        border: var(--border);
        padding: 14px;
        border-radius: 3px;

        h2 {
            margin: 0;
            padding: 0;
            color: var(--gold);
            font-size: 15px;
            letter-spacing: 0.1em;
            text-shadow: 0 0 8px var(--gold-glow);
            font-size: inherit;
        }

        p {
            margin: 0;
            padding: 6px 12px;
            background-color: var(--bg-inset);
            border: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            font-size: 13px;
            border-radius: 2px;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
            font-size: inherit;
        }
    }
}

.bossDiv {
    display: flex;
    justify-content: flex-start;
    background-color: var(--bg-card-light);
    border: var(--border);
    font-family: Georgia, 'Times New Roman', Times, serif;
    flex-direction: column;
    border-radius: 3px;
    width: auto;
    overflow: hidden;
    font-size: 2.5vh;

    h2 {
        margin: 0;
        padding: 14px 14px 10px;
        color: #c13030;
        font-size: 15px;
        letter-spacing: 0.1em;
        text-shadow: 0 0 10px rgba(193, 48, 48, 0.35);
        border-bottom: 1px solid rgba(139, 0, 0, 0.22);
        font-size: inherit;
    }

    img {
        display: block;
        width: 80%;
        height: 315px;
        object-fit: contain;
        margin: 12px auto;
    }

    img[src=""] {
        display: none;
    }

    #bossStatsDiv {
        display: flex;
        justify-content: space-around;
        padding: 10px 14px;
        background-color: var(--bg-inset);
        border-top: 1px solid rgba(139, 0, 0, 0.2);
        gap: 10px;

        p {
            margin: 0;
            padding: 6px 12px;
            background-color: var(--bg-card);
            border: 1px solid rgba(139, 0, 0, 0.2);
            color: var(--text-primary);
            font-size: 12px;
            border-radius: 2px;
            flex: 1;
            text-align: center;
            font-size: inherit;

        }
    }
}

