/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #333;
}

/* Navbar */
nav {
    background: #1e293b;
    padding: 15px 40px;
    display: flex;
    align-items: center;
}

/* Menu links */
nav a {
    color: white;
    text-decoration: none;
    margin-right: 25px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

/* Hover effect */
nav a:hover {
    color: #38bdf8;
}

/* Active link */
nav a.active {
    border-bottom: 2px solid #38bdf8;
}

/* Page container */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
}

/* Titles */
h1 {
    margin-bottom: 20px;
}

/* Blog post */
.post {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Buttons */
button {
    background: #2563eb;
    border: none;
    padding: 10px 15px;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #1d4ed8;
}

/* Forms */
input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

