body { padding: 0; margin: 0 }
#unity-container { position: absolute }
#unity-container.unity-desktop { left: 50%; top: 50%; transform: translate(-50%, -50%) }
#unity-container.unity-mobile { width: 100%; height: 100% }
#unity-canvas { background: #231F20 }
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo { width: 300px; height: 60px; background: url('unity-logo-light.png') no-repeat center }
#unity-progress-bar-empty { width: 141; height: 18px; margin-top: 10px; margin-left: 6.5px; background: url('progress-bar-empty-light.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; background: url('progress-bar-full-light.png') no-repeat center }
#unity-footer { position: relative }
.unity-mobile #unity-footer { display: none }
#unity-webgl-logo { float:left; width: 204px; height: 38px; background: url('webgl-logo.png') no-repeat center }
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
#unity-fullscreen-button { float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: rgb(0, 0, 0); padding: 10px; display: none }
.styled-button {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff; /* White background */
    color: rgb(0, 0, 0); /* Black text */
    padding: 10px 20px; /* Reduced padding for smaller button */
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove underline */
    font-size: 14px; /* Reduced font size */
    margin: 4px 2px; /* Margin */
    cursor: pointer; /* Pointer cursor on hover */
    border: none; /* No border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px #999; /* Shadow for 3D effect */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}
.styled-buttondropdown {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff; /* White background */
    color: rgb(0, 0, 0); /* Black text */
    padding: 8px 40px; /* Reduced padding for smaller button */
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove underline */
    font-size: 12px; /* Reduced font size */
    margin: 4px 2px; /* Margin */
    cursor: pointer; /* Pointer cursor on hover */
    border: none; /* No border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px #999; /* Shadow for 3D effect */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}
.styled-button:hover {
    background-color: #898989; /* Darker background on hover */
    box-shadow: 0 6px #666; /* Darker shadow on hover */
}

.styled-button:active {
    background-color: #80ff00; /* Even darker background when clicked */
    box-shadow: 0 2px #666; /* Lighter shadow when clicked */
    transform: translateY(4px); /* Move down when clicked */
}

/* Custom text style */
.custom-text {
    text-align: center;
    width: 60vw;
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark gray color for text */
}
