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

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

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

.pointer-fourth {
    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-fourth {
    margin-top: 30px;
    font-size: 18px;
    color: #242254;
    display: none;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wheel-result-fourth h3 {
    margin-top: 0;
    color: #242254;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

/* Responsive styles will be added via JavaScript */
@media only screen and (max-width: 767px) {
    .wheel-fourth {
        width: 90vw;
        height: 90vw;
        max-width: 350px;
        max-height: 350px;
    }
    
    .wheel-result-fourth {
        width: 90%;
    }
    
    .wheel-result-fourth h3 {
        font-size: 22px;
    }
}