                    .btn-beautiful {
                        flex: 1;
                        padding: 18px 16px;
                        background: linear-gradient(135deg, #c9431a 0%, #c90808 100%);
                        color: white;
                        border: none;
                        border-radius: 8px;
                        cursor: pointer;
                        font-family: inherit;
                        font-size: 16px;
                        font-weight: bold;
                        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
                        transition: all 0.3s ease;
                        min-width: 180px;
                    }
                    .btn-beautiful:hover {
                        background: linear-gradient(135deg, #b3081f 0%, #c90808 100%);
                        transform: translateY(-2px);
                        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
                    }
                    .btn-beautiful:active {
                        transform: translateY(0);
                        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
                    }

                    /* Table Styles */
                    .result-container {
                        margin-top: 40px;
                        display: none; /* Hide all by default */
                    }
                    .result-container.active {
                        display: block;
                        animation: fadeIn 0.5s ease-in-out;
                    }
                    @keyframes fadeIn {
                        from { opacity: 0; transform: translateY(10px); }
                        to { opacity: 1; transform: translateY(0); }
                    }

                    .result-table {
                        width: 100%;
                        border-collapse: collapse;
                        background: white;
                        border-radius: 12px;
                        overflow: hidden;
                        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
                        margin-bottom: 30px;
                    }
                    .result-table th {
                        background: #1e3c72;
                        color: white;
                        padding: 15px;
                        text-align: left;
                        font-weight: 600;
                    }
                    .result-table td {
                        padding: 15px;
                        border-bottom: 1px solid #eee;
                        color: #444;
                    }
                    .result-table tr:last-child td {
                        border-bottom: none;
                    }
                    .result-table tr:hover {
                        background-color: #f8faff;
                    }
                    .table-title {
                        font-size: 1.2rem;
                        color: #1e3c72;
                        margin-bottom: 15px;
                        font-weight: bold;
                        border-left: 5px solid #f3cf04;
                        padding-left: 15px;
                    }

                    /* Responsive Design */
                    @media (max-width: 768px) {
                        .btn-container {
                            flex-direction: column;
                        }
                        .btn-beautiful {
                            width: 100%;
                        }
                        .result-table th,
                        .result-table td {
                            padding: 10px;
                            font-size: 14px;
                        }
                    }