/*
 Theme Name:   Operativa ERP
 Theme URI:    http://operativa.lan
 Description:  Minimalt tema för Operativa ERP - full-width utan ramar
 Author:       Operativa
 Author URI:   http://operativa.lan
 Version:      1.0.0
 Text Domain:  operativa-theme
 Requires at least: 6.0
 Requires PHP: 7.4
*/

/* Reset - ta bort all WordPress-styling */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    background-color: #e2e8f0;
}

/* Huvudcontainer - ingen padding */
.site-content {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100vh;
    display: block !important;
}

.site-content > * {
    width: 100%;
    max-width: 100%;
}

/* Ta bort WordPress admin bar offset om inloggad */
body.admin-bar .site-content {
    min-height: calc(100vh - 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-content {
        min-height: calc(100vh - 46px);
    }
}

/* Dölj WordPress admin bar på frontend för att få mer plats */
/*
#wpadminbar {
    display: none !important;
}
html {
    margin-top: 0 !important;
}
*/
