/* General Layout */
body {
    font-family: sans-serif;
    margin: 0;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header and Navigation */
.main-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav li {
    display: inline-block;
    margin-left: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* Main Content Area */
main {
    padding: 20px 0;
}

/* Add styles here */

form {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin-bottom: 30px;
}

label {
  margin-top: 10px;
}

input, textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button[type="submit"] {
  margin-top: 20px;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#lotto-container {
  margin-top: 30px;
  text-align: center;
}

#lotto-btn {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

#lotto-numbers {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
}

/* Post and Content Sections */
.post, .post-preview, .tools-section, .recent-posts {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.post h2, .post-preview h4, .recent-posts h3, .tools-section h3 {
    margin-top: 0;
}

.post-preview h4 a {
    text-decoration: none;
    color: #333;
}

.post-preview h4 a:hover {
    color: #007bff;
}

/* Tools Section */
.tools-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.tools-section > div {
    flex: 1;
}

/* Footer */
.main-footer {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 20px 0;
    text-align: center;
    color: #666;
    margin-top: 40px;
}
