/* =========================================================
   CSS hasil ekstraksi dari blok <style> #8
   Nama file: 08-macau-result.css
   ========================================================= */

.macau-section {
                            width: 100%;
                            background: #5b0000;
                            border: 1px solid #2d2d2d;
                            border-radius: 12px;
                            box-sizing: border-box;
                            padding: 25px;
                            color: #fff;
                        }

                        .macau-title {
                            text-align: center;
                            margin: 0;
                            font-size: 32px;
                        }

                        .macau-subtitle {
                            text-align: center;
                            color: #bbb;
                            margin: 10px 0 25px;
                        }

                        .macau-tabs {

                            display: flex;
                            gap: 10px;
                            flex-wrap: wrap;
                            margin-bottom: 25px;

                        }

                        .macau-tab {

                            flex: 1;
                            min-width: 110px;

                            border: none;

                            background: #d80000;
                            border: 5px double gold;
                            color: #fff;

                            padding: 14px;

                            cursor: pointer;

                            border-radius: 8px;

                            transition: .3s;

                        }

                        .macau-tab:hover {

                            background: #333;

                        }

                        .macau-tab.active {

                            background: #5b0000;

                            color: #111;

                            font-weight: bold;

                        }

                        #macau-loading {

                            display: none;

                            text-align: center;

                            margin: 20px;

                        }

                        #macau-result {

                            width: 100%;

                            overflow-x: auto;

                        }

                        #macau-result table {

                            width: 100%;

                            border-collapse: collapse;
                            background-color: #a0a0a0;

                        }

                        #macau-result th {

                            background: #5b0000;

                            color: #111;

                            padding: 12px;

                        }

                        span.resballs {
                            color: gold;
                            font-weight: bold;
                            text-transform: uppercase;
                            text-shadow: 1px 1px 1px black;
                        }

                        #macau-result td {
                            color: rgb(0, 0, 0);
                            border: 1px solid gold;
                            padding: 10px;
                            text-align: center;
                            width: 500px;

                        }

                        #macau-result tr:nth-child(even) {

                            background: #bb0000;

                        }

                        .pagination {

                            display: flex;

                            justify-content: center;

                            flex-wrap: wrap;

                            gap: 8px;

                            margin-top: 20px;

                        }

                        .pagination button {

                            border: none;

                            background: red;

                            color: #fff;

                            padding: 8px 15px;

                            cursor: pointer;

                            border-radius: 6px;

                        }

                        .pagination button.active {

                            background: #5b0000;

                            color: #111;

                            font-weight: bold;

                        }
