
    /* Layout */
    .sr-layout {
        display: grid;
        grid-template-columns: 2.4fr 1fr;
        gap: 30px;
        margin: 20px 0;
    }
    
    @media (max-width: 768px) {
        .sr-layout {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }
    
    /* Title */
    .sr-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #333;
        line-height: 1.3;
    }
    
    /* Quick Info */
    .sr-quick-info {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .sr-info-row {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px dashed #eee;
    }
    
    .sr-info-label {
        font-weight: 600;
        color: #555;
    }
    
    .sr-info-value {
        color: #333;
        text-align: right;
    }
    
    /* Summary */
    .sr-summary {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 8px;
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        border-left: 4px solid #c40000;
    }
    
    .sr-apply-btn {
        background: #c40000;
        color: #fff;
        padding: 12px 30px;
        border-radius: 25px;
        text-decoration: none;
        display: inline-block;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
        align-self: flex-start;
        border: 2px solid #c40000;
    }
    
    .sr-apply-btn:hover {
        background: #fff;
        color: #c40000;
        border-color: #c40000;
    }
    
    /* Cards */
    .sr-card {
        margin-top: 25px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        border: 1px solid #e0e0e0;
    }
    
    .sr-head {
        padding: 15px 20px;
        color: #fff;
        font-weight: 700;
        font-size: 18px;
    }
    
    /* Color Variations */
    .red { background: #c40000; }
    .green { background: #2e7d32; }
    .purple { background: #5e35b1; }
    .navy { background: #1a237e; }
    .orange { background: #ef6c00; }
    .teal { background: #00695c; }
    .dark-red { background: #b71c1c; }
    .dark-blue { background: #0d47a1; }
    .dark-purple { background: #4a148c; }
    
    .sr-body {
        background: #fff;
        padding: 20px;
    }
    
    /* Posts Details Table */
    .sr-posts-table-container {
        width: 100%;
        overflow-x: auto;
    }
    
    .sr-table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
    }
    
    .sr-posts-details-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        min-width: 600px;
    }
    
    .sr-posts-details-table thead {
        background: #f5f5f5;
    }
    
    .sr-posts-details-table th {
        padding: 12px 15px;
        text-align: left;
        font-weight: 600;
        color: #333;
        border: 1px solid #ddd;
        background: #f8f9fa;
    }
    
    .sr-posts-details-table td {
        padding: 12px 15px;
        border: 1px solid #ddd;
        vertical-align: top;
    }
    
    .sr-posts-details-table tbody tr:nth-child(even) {
        background-color: #f9f9f9;
    }
    
    .sr-posts-details-table tbody tr:hover {
        background-color: #f0f7ff;
    }
    
    .sr-post-sno {
        width: 50px;
        text-align: center;
    }
    
    .sr-post-name {
        width: 35%;
        font-weight: 500;
    }
    
    .sr-post-total {
        width: 15%;
        text-align: center;
        font-weight: 500;
    }
    
    .sr-post-eligibility {
        width: 50%;
    }
    
    .sr-total-row {
        background: #e8f5e9 !important;
        font-weight: 700;
    }
    
    .sr-total-label {
        text-align: right;
        padding-right: 20px !important;
    }
    
    .sr-total-value {
        text-align: left;
        color: #2e7d32;
    }
    
    .sr-table-note {
        margin-top: 15px;
        padding: 12px 15px;
        background: #fff8e1;
        border-left: 4px solid #ffc107;
        border-radius: 4px;
        font-size: 14px;
        color: #5d4037;
    }
    
    /* Mobile Responsive Table */
    @media (max-width: 768px) {
        .sr-posts-details-table {
            display: block;
            width: 100%;
            min-width: 100%;
        }
        
        .sr-posts-details-table thead {
            display: none;
        }
        
        .sr-posts-details-table tbody,
        .sr-posts-details-table tr,
        .sr-posts-details-table td {
            display: block;
            width: 100%;
        }
        
        .sr-posts-details-table tr {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .sr-posts-details-table td {
            padding: 10px 15px;
            text-align: left;
            position: relative;
            padding-left: 45%;
            border: none;
            border-bottom: 1px solid #eee;
        }
        
        .sr-posts-details-table td:last-child {
            border-bottom: none;
        }
        
        .sr-posts-details-table td::before {
            content: attr(data-label);
            position: absolute;
            left: 15px;
            top: 10px;
            width: 40%;
            padding-right: 10px;
            font-weight: 600;
            color: #333;
        }
        
        .sr-post-sno::before {
            content: "S.No.";
        }
        
        .sr-post-name::before {
            content: "Post Name";
        }
        
        .sr-post-total::before {
            content: "Total Posts";
        }
        
        .sr-post-eligibility::before {
            content: "Eligibility";
        }
        
        .sr-total-row {
            display: flex !important;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 15px !important;
        }
        
        .sr-total-row td {
            padding: 0 !important;
            border: none !important;
            width: auto !important;
        }
        
        .sr-total-row td::before {
            display: none;
        }
        
        .sr-total-label {
            text-align: left !important;
            padding-right: 10px !important;
        }
    }
    
    /* Tables */
    .sr-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 16px;
    }
    
    .sr-table th {
        background: #f5f5f5;
        border: 1px solid #ddd;
        padding: 12px 15px;
        text-align: left;
        width: 40%;
        font-weight: 600;
    }
    
    .sr-table td {
        border: 1px solid #ddd;
        padding: 12px 15px;
    }
    
    /* Lists */
    .sr-list {
        padding-left: 20px;
        margin: 0;
    }
    
    .sr-list li {
        margin-bottom: 10px;
        padding-left: 10px;
    }
    
    /* Sidebar */
    .sr-side-box {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        border: 1px solid #e0e0e0;
        position: sticky;
        top: 20px;
    }
    
    .sr-side-box h3 {
        margin-top: 0;
        margin-bottom: 20px;
        color: #333;
        font-size: 20px;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 10px;
    }
    
    /* Buttons */
    .btn {
        display: block;
        padding: 12px;
        margin-bottom: 12px;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        transition: opacity 0.3s ease;
    }
    
    .btn:hover {
        opacity: 0.9;
        color: #fff;
        text-decoration: none;
    }
    
    .blue { background: #1976d2; }
    .green { background: #2e7d32; }
    .orange { background: #ef6c00; }
    .purple { background: #5e35b1; }
    .teal { background: #00695c; }
    .navy { background: #1a237e; }
    .dark-red { background: #b71c1c; }
    .dark-blue { background: #0d47a1; }
    .dark-purple { background: #4a148c; }
    
    /* Social Buttons */
    .sr-social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }
    
    .sr-social-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        border-radius: 25px;
        color: #fff !important;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
    
    .sr-social-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        color: #fff;
    }
    
    .sr-social-btn.youtube { background: #ff0000; }
    .sr-social-btn.instagram { background: #e4405f; }
    .sr-social-btn.telegram { background: #0088cc; }
    .sr-social-btn.whatsapp { background: #25d366; }
    .sr-social-btn.facebook { background: #1877f2; }
    
    .sr-social-btn .dashicons {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
    
    @media (max-width: 480px) {
        .sr-social-btn {
            min-width: 100%;
        }
    }
    
    /* FAQ */
    .sr-faq {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .sr-faq h4 {
        color: #333;
        margin-top: 20px;
        margin-bottom: 10px;
        padding-bottom: 5px;
        border-bottom: 1px solid #eee;
    }
    
    .sr-faq p {
        margin-bottom: 15px;
    }
    