 

.container {
    /* max-width: 800px; */
    margin: 0 auto;
    padding: 2rem; 
}

/* Typography  
  h1, h2, h3, h4, h5, h6 {
    margin: 2rem 0 1rem;
    font-weight: 600;
    line-height: 1.25;
    color: #1a202c;
} 

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

a {
    color: #3182ce;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #2c5282;
    text-decoration: underline;
} */

blockquote {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid #3182ce;
    background: #fff;
    font-style: italic;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Blog Post Styles */
.blog-post {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    margin-bottom: 2rem;
}

.post-title {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 2.75rem;
    font-weight: 700;
}

.post-meta {
    color: #718096;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.post-meta span {
    margin-right: 1.5rem;
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

 
 
.site-footer { 
    text-align: center;
}

/* Recent Posts */
.recent-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.recent-posts h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.recent-posts ul {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
}

.recent-posts li:before {
    content: "→";
    margin-right: 0.5rem;
    color: #3182ce;
}

/* Admin Panel Styles */
.admin-panel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-header {
    background: #2d3748;
    color: white;
    padding: 1.5rem;
    border-radius: 8px 8px 0 0;
    margin-bottom: 2rem;
}

.admin-header h1 {
    color: white;
    margin: 0;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #3182ce;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn:hover {
    background: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

.btn-danger {
    background: #e53e3e;
}

.btn-danger:hover {
    background: #c53030;
}

.btn-secondary {
    background: #718096;
}

.btn-secondary:hover {
    background: #4a5568;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

input[type="text"],
input[type="password"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    border-color: #3182ce;
}

textarea {
    min-height: 200px;
    resize: vertical;
    font-family: monospace;
}

/* Post List Table */
.post-list {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.post-list table {
    width: 100%;
    border-collapse: collapse;
}

.post-list th {
    background: #f7fafc;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #4a5568;
    border-bottom: 2px solid #e2e8f0;
}

.post-list td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.post-list tr:hover {
    background: #f7fafc;
}

/* Messages */
.message, .error {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.message {
    background: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.error {
    background: #fed7d7;
    color: #742a2a;
    border: 1px solid #fc8181;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .blog-post {
        padding: 1.5rem;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .post-list {
        overflow-x: auto;
    }
}