/* Base Typography */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f3f2f1; /* Neutral background */
    color: #323130; /* Text color */
    font-size: 16px;
}

/* Header */
header, .navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #edebe9;
}

/* Primary Buttons */
.btn-primary {
    background-color: #0078d4; /* Microsoft blue */
    color: #ffffff;
    border-radius: 4px;
    border: none;
    padding: 10px 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #005a9e; /* Darker blue on hover */
}

/* Secondary Buttons */
.btn-secondary {
    background-color: #ffffff;
    color: #0078d4;
    border: 1px solid #0078d4;
    border-radius: 4px;
    padding: 10px 16px;
    font-weight: 600;
}
.btn-secondary:hover {
    background-color: #f3f2f1;
}

/* Links */
a {
    color: #0078d4;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Cards / Containers */
.card, .panel {
    background-color: #ffffff;
    border: 1px solid #edebe9;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Inputs */
input, select, textarea {
    border: 1px solid #edebe9;
    border-radius: 4px;
    padding: 8px;
    font-size: 14px;
}
input:focus, select:focus, textarea:focus {
    border-color: #0078d4;
    outline: none;
}

/* Footer */
footer {
    background-color: #f3f2f1;
    color: #605e5c;
    padding: 16px;
    text-align: center;
    font-size: 14px;
}