/* Reset default browser styles */
body,
h1,
h2,
p,
table,
input,
button {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Page layout */
body {
    background-color: #f2f2f2;
    padding: 20px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

h2 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 10px;
}

table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

th,
td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ccc;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

form {
    margin-bottom: 20px;
}

input[type="text"],
input[type="submit"] {
    padding: 5px 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
}

input[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

p {
    margin-bottom: 10px;
}

/* Poll Control buttons */
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* Poll Status */
p.Status {
    font-weight: bold;
    color: #4CAF50;
}

/* Total Statistics */
p.Total {
    margin-top: 10px;
    font-weight: bold;
}

/* Poll Options */
label {
    display: block;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    table {
        font-size: 14px;
    }
}

