﻿/* Make header fixed */
header, .navbar, .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* ensures it stays above content */
    background: #fff; /* or your theme color */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* subtle shadow */
}

/* Adjust body so content doesn’t hide behind header */
body {
    margin: 0;
    padding-top: 70px; /* equal to header height */
    padding-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden; /* Prevent horizontal scroll */
   
    box-sizing: border-box;
}

/* Keep content padding */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Inputs style */
input,
select,
textarea {
    max-width: 280px;
}
