.grow-monster-device {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.grow-monster-tablet {
    width: 600px;
    height: 800px;
    border-radius: 20px;
}

.grow-monster-phone {
    width: 300px;
    height: 600px;
    border-radius: 15px;
}

.grow-monster-device-content {
    height: 100%;
    overflow-y: auto;
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.grow-monster-device-content::-webkit-scrollbar {
    width: 8px;
}

.grow-monster-device-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.grow-monster-device-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}