*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.top-right-container {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.header {
    width: max-content;
    display: flex;
    align-items: center;
    column-gap: 12px;
    background-color: #ffffff;
    padding: 4px;
    border-radius: 4px;
    font-family: Inter;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
}

.logo {
    max-width: 36px;
    max-height: 36px;
    display: flex;
    align-items: center;
}

.prev-btn {
    border: none;
    outline: none;
    background-color: #048cd0;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: Inter;
    letter-spacing: 1px;
    font-size: 16px;
}

.spim-logo-wrapper {
    width: 72px;
    height: 72px;
    padding: 8px;
    background-color: #ffffff;
    border-radius: 8px;
}

.spim-logo {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .top-right-container {
        top: 10px;
        right: 10px;
        gap: 8px;
    }

    .header {
        column-gap: 8px;
    }

    .logo-wrapper {
        font-size: 16px;
    }

    .logo {
        max-width: 32px;
        max-height: 32px;
    }

    .prev-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    .spim-logo-wrapper {
        width: 60px;
        height: 60px;
        padding: 6px;
    }
}

@media screen and (max-width: 480px) {
    .top-right-container {
        top: 8px;
        right: 8px;
        gap: 6px;
    }

    .header {
        column-gap: 6px;
    }

    .logo-wrapper {
        font-size: 14px;
    }

    .logo {
        max-width: 28px;
        max-height: 28px;
    }

    .prev-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .spim-logo-wrapper {
        width: 48px;
        height: 48px;
        padding: 5px;
    }
}