body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

.container {
    flex: 1;
    position: relative;
}

footer {
    margin-top: auto;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.active-polls {
    list-style: none;
    padding: 0;
}

.active-polls li {
    margin-bottom: 10px;
}

.active-polls li a {
    text-decoration: none;
    color: #333;
    background-color: lightblue; /* Changed background color to orange */
    padding: 15px 20px;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.active-polls li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.3s, opacity 1s;
}

.active-polls li a:hover:before {
    transform: scale(0, 0);
    opacity: 0.3;
}

.active-polls li a:hover {
    background-color: #4CAF50;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.poll-container {
    background-color: lightblue;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.poll-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: black; /* Add color for title */
}

.poll-option {
    margin-bottom: 10px;
}

.poll-option label {
    display: flex;
    align-items: center;
    color: black; /* Add color for options */
}

.poll-radio {
    margin-right: 10px;
}

.poll-option-text {
    font-size: 16px;
    color: black; /* Add color for option text */
}

.poll-submit {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
}



