/*
Theme Name: Ticksy Fallback
Author: RTL
Description: Fallback tema za Ticksy s osnovnim zastitama.
Version: 1.0
Text Domain: flowdesk-fallback
*/

:root {
  --flowdesk-bg: #ffffff;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--flowdesk-bg);
}

body.flowdesk-fallback-theme {
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 24px;
  box-sizing: border-box;
}

.flowdesk-fallback-shell {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flowdesk-fallback-logo {
  display: block;
  width: min(100%, 320px);
  height: auto;
}

@media (max-width: 640px) {
  body.flowdesk-fallback-theme {
    padding: 16px;
  }

  .flowdesk-fallback-logo {
    width: min(100%, 240px);
  }
}
