/*
Theme Name: WP Reels Pro Theme
Theme URI: https://example.com/wp-reels-theme
Author: WP Reels Studio
Author URI: https://example.com
Description: Dedicated Mobile-first, Full-Screen Reels Theme for WordPress. Seamlessly pairs with WP Reels Core Plugin.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: wp-reels-theme
*/

/* Reset & Mobile Canvas */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    height: 100%;
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.reels-app-viewport {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* When plugin shortcode is present it takes over */
#wp-reels-root {
    width: 100%;
    height: 100%;
}
