/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.btn-primary {
  background: #007bff;
}

.btn-secondary {
  background: #6c757d;
}

.btn-success {
  background: #28a745;
}

.btn-danger {
  background: #dc3545;
}

.btn-warning {
  background: #ffc107;
  color: #333;
}

.btn-light {
  background: #f8f9fa;
  color: #333;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 14px;
}

/* Forms */
.field {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.actions {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Notices/Alerts */
.notice, .alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.notice {
  background-color: #d4edda;
  color: #155724;
}

.alert {
  background-color: #f8d7da;
  color: #721c24;
}

/* Navigation */
.navbar {
  background-color: #343a40;
  color: white;
  padding: 10px 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.navbar-brand {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.navbar-nav {
  list-style: none;
  display: flex;
}

.nav-item {
  margin-left: 15px;
}

.nav-link {
  color: white;
  text-decoration: none;
}

/* Landing Page */
.landing-page {
  text-align: center;
  max-width: 800px;
  margin: 50px auto;
}

.landing-page h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.landing-page h2 {
  font-size: 24px;
  color: #6c757d;
  margin-bottom: 30px;
}

.description {
  margin-bottom: 40px;
}

.cta {
  margin-top: 30px;
}

/* Dashboard */
.user-info {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.blogs-section, .recent-posts-section {
  margin-bottom: 40px;
}

.blog-item, .post-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
}

.blog-actions, .post-actions {
  margin-top: 15px;
}

/* Blog and Post */
.blog-header, .post-header {
  margin-bottom: 30px;
}

.post-meta {
  color: #6c757d;
  margin-bottom: 20px;
}

.post-content {
  margin-bottom: 30px;
  line-height: 1.8;
}

.blog-description {
  font-style: italic;
  color: #6c757d;
}

.posts-container {
  margin-top: 40px;
}

.post-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.post-excerpt {
  margin: 15px 0;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
}

.bg-success {
  background-color: #28a745;
  color: white;
}

.bg-secondary {
  background-color: #6c757d;
  color: white;
}

/* Tables */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.table th, .table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.table th {
  background-color: #f8f9fa;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
  }
  
  .navbar-nav {
    margin-top: 15px;
  }
  
  .nav-item {
    margin-left: 0;
    margin-right: 15px;
  }
}