body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 30px;
    color: #333;
    overflow-x: hidden;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}


h1, h2 {
    color: #212529;
    margin-top: 20px;
    margin-bottom: 20px;
}

table.news-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
    border: 1px solid #dee2e6;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

table.news-table th, table.news-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
    font-size: 15px;
}

table.news-table th {
    background-color: #343a40;
    color: white;
    font-weight: bold;
}

table.news-table tr:hover {
    background-color: #f1f1f1;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn {
    background-color: #007bff;
    color: white;
    padding: 8px 16px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: #0056b3;
}

.center-align {
    text-align: center;
}

.nav-buttons {
    text-align: center;
    margin: 10px 0;
}

.nav-buttons a {
    display: inline-block;
    margin: 5px 10px;
    padding: 8px 14px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    background-color: #007bff;
    transition: background-color 0.3s;
}

.nav-buttons a:hover {
    background-color: #0056b3;
}

.nav-buttons a i {
    margin-right: 6px;
}

.highlight-mail {
    border: 2px solid #ffc107;
    background-color: white;
    color: #ffc107;
}

.highlight-mail:hover {
    background-color: #ffc107;
    color: white;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #888;
}

