body {
    font-family: "Segoe UI", sans-serif;
    background: #f8fafc;
    text-align: center;
    padding: 40px;
}

h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.8;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
}

.btn {
    padding: 12px 22px;
    margin: 10px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.yes-btn {
    background: #4ade80;
    color: white;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(74, 222, 128, 0.3);
}

.yes-btn:hover {
    transform: scale(1.07);
    box-shadow: 0px 5px 10px rgba(74, 222, 128, 0.4);
}

.no-btn {
    background: #f87171;
    color: white;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(248, 113, 113, 0.3);
    position: relative;
}
table {
    border-collapse: collapse;
    width: 100%;
}

table th, table td {
    border: 1px solid #aaa;
    padding: 8px;
}