.wp_spin_wheel_seventh {
    position: relative;
    text-align: center;
    margin-top: 20px;
}

.wheel-seventh {
    display: inline-block;
    position: relative;
    width: 600px;
    height: 600px;
}

canvas#ultimate_spin_canvas_seventh {
    cursor: pointer;
    width: 100%;
    height: auto;
}

.pointer-seventh {
    position: absolute;
    top: 50%;
    right: -15px;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 35px solid #ffffff;
    z-index: 1000;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
    transform: translateY(-50%);
}

.wheel-result-seventh {
    margin-top: 30px;
    font-size: 16px;
    color: #242254;
    display: none;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wheel-result-seventh h3 {
    margin-top: 0;
    color: #2e7333;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.wheel-result-seventh p {
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 16px;
    color: #193828;
    text-align: left;
}

.presentation-description {
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .wheel-seventh {
        width: 90vw;
        height: 90vw;
        max-width: 350px;
        max-height: 350px;
    }
    
    .wheel-result-seventh {
        width: 90%;
        padding: 20px;
    }
    
    .wheel-result-seventh h3 {
        font-size: 18px;
    }
    
    .wheel-result-seventh p {
        font-size: 14px;
    }
}