/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 15 2025 | 13:25:30 */
/* Add your CSS code here.
/* Remove page titles on all pages */
.wp-block-post-title {
    display: none !important;
}

/* Draw History Table Styling */
.bc-rng-history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
}

/* Header row */
.bc-rng-history-table th {
    text-align: left;
    padding: 14px 18px;
    background: rgba(0,0,0,0.06);
    font-weight: 600;
    color: #222222;
    font-size: 0.95rem;
}

/* Table rows */
.bc-rng-history-table td {
    padding: 14px 18px;
    color: #222222;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    word-break: break-word;
}

/* Alternating row colour */
.bc-rng-history-table tr:nth-child(even) {
    background: rgba(0,0,0,0.04);
}

/* Hover effect */
.bc-rng-history-table tr:hover {
    background: rgba(0,0,0,0.07);
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .bc-rng-history-table th,
    .bc-rng-history-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

