/* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9fafb;
    color: #333;
    line-height: 1.6;
}

/* Centered Container */
div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Headings */
h1 {
    font-size: 2.5rem;
    text-align: center;
    color: #222;
    margin: 20px 0;
    font-weight: 700;
    letter-spacing: 1px;
}

h2 {
    font-size: 1.5rem;
    text-align: center;
    color: #444;
    margin: 15px 0;
    font-weight: 600;
}

/* Buttons */
button {
    background: linear-gradient(135deg, #4CAF50, #3b9441);
    border: none;
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    width: 220px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

button:hover {
    background: linear-gradient(135deg, #45a049, #36823a);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Wallet Section */
#walletSection {
    margin-top: 15px;
}


/* Results Section */
#resultsSection {
    margin-top: 25px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 300px;
}

#resultsList {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

#resultsList li {
    background: #f1f1f1;
    margin: 6px 0;
    padding: 10px 14px;
    border-radius: 8px;
    transition: background 0.2s;
}

#resultsList li:hover {
    background: #e6e6e6;
}

/* Input Fields */
input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 240px;
    font-size: 1rem;
    transition: border 0.2s;
}

input:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 5px rgba(76,175,80,0.4);
}

/* Layout Helpers */
.election_proper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.white_space {
    height: 80px;
    width: 80px;
}
