* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.app-header {
    background: linear-gradient(135deg, #2ecc71 0%, #ff8c00 100%);
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.app-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-header .logo {
    font-size: 28px;
    font-weight: bold;
}

.app-header .title {
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vote-icon {
    font-size: 28px;
}

.section {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section h4 {
    color: #000;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff8c00;
    padding-bottom: 10px;
}

.btn-primary {
    background: #2ecc71;
    border: none;
    padding: 12px 30px;
}

.btn-primary:hover {
    background: #27ae60;
}

.btn-success {
    background: #ff8c00;
    border: none;
}

.btn-success:hover {
    background: #e67e00;
}

.success-box {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.table {
    background: #fff;
}

.table-dark {
    background: #2ecc71 !important;
}

label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: block;
}