/* Gift Code Table Styles - Simple & Clean */
.giftcode-table {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.giftcode_table_title {
    color: #f7ed00;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.giftbox {
    width: 100%;
    border-collapse: collapse;
}

.giftbox table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.giftbox th, .giftbox td {
    border: 1px solid #f7ed00;
    padding: 8px;
    text-align: center;
}

.giftbox tbody tr:hover {
    background-color: #f40208;
}

.giftbox th {
    background-color: #f7ed00;
}

.giftbox td.giftcode-hidden {
    background-color: #f40208;
    color: #000000;
}

.reveal-giftcode {
    background-color: #4CAF50;
    color: #ffffff;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}

.reveal-giftcode:hover {
    background-color: #45a049;
    color: #ffffff;
}

.reveal-giftcode:disabled {
    background-color: #ddd;
    cursor: not-allowed;
}

.giftbox td:first-child, th:first-child {
    padding-left: 8px !important;
}

@media only screen and (max-width: 600px) {
    button.reveal-giftcode {
        font-size: 10px;
        padding: 2px 10px;
    }
}

