
    /* Satta Results Styles */
    .satta-results-wrapper {
        max-width: 100%;
        margin: 0 auto;
        font-family: "Hind", Arial, Helvetica, sans-serif;
        background: white;
    }
    
    .quick-result-board {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .quick-result-board th {
        background: #f8f9fa;
        padding: 15px 10px;
        text-align: center;
        border-bottom: 2px solid #e74c3c;
    }
    
    .quick-result-board td {
        padding: 12px 10px;
        border-bottom: 1px solid #eee;
    }
    
    .board-title h1 {
        color: #e74c3c;
        font-size: 22px;
        margin: 0;
        text-align: center;
    }
    
    .board-head h2 {
        font-size: 16px;
        margin: 0;
        color: #2c3e50;
    }
    
    .board-section {
        background: #f1f1f1;
    }
    
    .board-section h3 {
        margin: 0;
        color: #ff5252;
        font-size: 16px;
        padding-left: 16px;
    }
    
    .game-result {
        transition: background 0.3s;
    }
    
    .game-result:hover {
        background: #f9f9f9;
    }
    
    .game-details {
        text-align: left;
    }
    
    .game-name {
        font-weight: 600;
        color: #2c3e50;
        margin: 0 0 5px 0;
        font-size: 16px;
    }
    
    .game-time {
        color: #7f8c8d;
        font-size: 12px;
        margin: 2px 0;
        font-weight: normal;
    }
    
    .game-link a {
        color: #3498db;
        text-decoration: none;
        font-size: 12px;
    }
    
    .game-link a:hover {
        text-decoration: underline;
    }
    
    .yesterday-number h3,
    .today-number h3 {
        font-size: 24px;
        font-weight: bold;
        margin: 0;
        text-align: center;
    }
    
    .yesterday-number h3 {
        color: #95a5a6;
    }
    
    .today-number h3 {
        color: #e74c3c;
    }
    
    .highlight .game-name {
        color: #e74c3c;
    }
    
    .highlight .today-number h3 {
        color: #c0392b;
        font-size: 28px;
    }
    
    /* Monthly Chart */
    .chart {
        margin: 30px 0;
    }
    
    .chart-table {
        width: 100%;
        border-collapse: collapse;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .chart-head h1 {
        background: #2c3e50;
        color: white;
        padding: 15px;
        margin: 0;
        font-size: 20px;
        text-align: center;
    }
    
    .date-name {
        background: #34495e;
        color: white;
    }
    
    .date-name th {
        padding: 12px 8px;
        text-align: center;
        font-weight: 600;
    }
    
    .day-number td {
        padding: 10px 8px;
        text-align: center;
        border: 1px solid #eee;
    }
    
    .day {
        background: #f8f9fa;
        font-weight: 600;
        color: #2c3e50;
    }
    
    .number {
        font-weight: bold;
        font-size: 18px;
    }
    
    /* Editable Cells */
    .editable-number {
        cursor: pointer;
        background: #fffde7;
        transition: background 0.3s;
    }
    
    .editable-number:hover {
        background: #fff9c4;
    }
    
    .editable-number.editing {
        background: #fff59d;
        outline: 2px solid #f39c12;
    }
    
    /* Modal */
    .satta-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
    }
    
    .satta-modal-content {
        background: white;
        margin: 10% auto;
        padding: 20px;
        width: 90%;
        max-width: 400px;
        border-radius: 8px;
        position: relative;
    }
    
    .close-modal {
        position: absolute;
        right: 15px;
        top: 10px;
        font-size: 24px;
        cursor: pointer;
    }
    
    .edit-form {
        margin-top: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
    }
    
    .form-group input {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        .quick-result-board {
            font-size: 14px;
        }
        
        .game-name {
            font-size: 14px;
        }
        
        .yesterday-number h3,
        .today-number h3 {
            font-size: 20px;
        }
        
        .chart-table {
            font-size: 12px;
        }
        
        .number {
            font-size: 16px;
        }
        
        .satta-modal-content {
            width: 95%;
            margin: 20% auto;
        }
    }
    
    @media (max-width: 480px) {
        .board-title h1 {
            font-size: 18px;
        }
        
        .board-head h2 {
            font-size: 14px;
        }
        
        .quick-result-board th,
        .quick-result-board td {
            padding: 8px 5px;
        }
        
        .game-name {
            font-size: 13px;
        }
        
        .game-time {
            font-size: 11px;
        }
        
        .yesterday-number h3,
        .today-number h3 {
            font-size: 18px;
        }
    }
    