/* /public/css/style.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}
header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #0779e4 3px solid;
}
header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}
header #branding {
    float: left;
}
header #branding h1 {
    margin: 0;
}
header nav {
    float: right;
    margin-top: 10px;
}
header ul {
    margin: 0;
    padding: 0;
}
header li {
    display: inline;
    padding: 0 20px 0 20px;
}
main {
    padding: 20px 0;
}
article {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}
footer {
    padding: 20px;
    margin-top: 20px;
    color: #fff;
    background-color: #333;
    text-align: center;
}
.post-list a {
    text-decoration: none;
    color: #0779e4;
    font-size: 1.2em;
}
.post-list li {
    list-style: none;
    padding: 10px;
    border-bottom: 1px dotted #ccc;
}

/* Lottery Table */
.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 1.1em;
}
.results-table th {
    background-color: #e40707;
    color: white;
    padding: 10px;
}
.results-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
.results-table .prize-label {
    background-color: #f2f2f2;
    font-weight: bold;
    width: 30%;
}
.results-table .prize-number {
    font-weight: bold;
    letter-spacing: 2px;
}
.results-table .prize-number.special {
    color: #e40707;
    font-size: 1.5em;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Mobile Styles */
@media (max-width: 576px) {
    .container {
        width: auto;
        padding: 0 0px;
    }
}
