/* ==== GLOBAL STYLES ==== */
body {
    margin: 0;
    padding-top: 60px; /* Header की height के बराबर */
    font-family: 'Segoe UI', sans-serif;
    background: #f8f9fa;
    color: #2d3436;
    min-height: 100vh;
}

/* ==== GLOBAL HEADER STYLE ==== */
header {
    background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
    color: white;
    padding: 0 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Optional default container spacing */
.container {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    box-sizing: border-box;
}