/*
Theme Name: AFSync App Theme
Theme URI: https://afsync.de/
Author: AFSync
Description: Eigenständiges Vollbild-Theme für die AFSync Browseranwendung. Die Seite /afsync/ wird ohne Theme-Header, Footer oder Content-Begrenzung gerendert.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: afsync-app-theme
*/

:root {
    --afsync-theme-bg: #e9edf2;
    --afsync-theme-text: #24384d;
    --afsync-theme-link: #0d67c4;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--afsync-theme-bg);
    color: var(--afsync-theme-text);
    font-family: "Segoe UI", Arial, sans-serif;
}

a {
    color: var(--afsync-theme-link);
}

.afsync-theme-standard {
    width: min(1120px, calc(100% - 32px));
    margin: 32px auto;
    padding: 28px;
    background: #fff;
    border: 1px solid #d5dde6;
    border-radius: 5px;
}

.afsync-theme-standard h1 {
    margin-top: 0;
}
