.instructions-container {
    text-align: center; /* Centers the inline-block child */
}

.instructions {
    font-size: 1.1em;
    color: #f4e4bc;
    background: linear-gradient(145deg, #2a1810, #3d2817);
    padding: 20px 25px;
    border: 3px solid #8b4513;
    border-radius: 12px;
    line-height: 1.6;
    display: inline-block;
    text-align: center;
    margin: 30px 0; /* Let parent handle centering */
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(212, 175, 55, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: 0.5px;
}

table {
    background: linear-gradient(145deg, #3d2817, #2a1810);
    border: 4px solid #8b4513 !important;
    border-radius: 10px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    margin: 40px auto !important;
    overflow: hidden;
    position: relative;
}

td {
    background: linear-gradient(135deg, #4a2c17, #3d2414);
    border: 2px solid #8b4513 !important;
    color: #f4e4bc !important;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    padding: 15px 10px !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}

body > * {
    position: relative;
    z-index: 1;
}

