/* Professional Style with Image Zoom */

/* Base Colors */
:root {
    --primary-color: #007bff; /* Primary color for links, buttons, etc. */
    --text-color: #333; /* Default text color */
    --background-color: #f8f9fa; /* Background color */
}

/* Body Styles */
body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

img:hover {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* Code Blocks */
code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    background-color: #f8f9fa;
    padding: 4px 6px;
    border-radius: 3px;
    color: #333;
}

/* Syntax Highlighting */
.hljs {
    display: block;
    overflow-x: auto;
    padding: 1em;
    color: #333;
    background: #f8f9fa;
}
