       .writer-item {
            background: #ffffff;
            border-radius: 16px;
            padding: 1.25rem;
            margin-bottom: 1rem;
            border: 1px solid #3498db;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .writer-item:hover {
            transform: scale(1.01);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-color: #3498db;
        }

        /* Numbered Rank Stylization */
        .rank-box {
            font-size: 0.8rem;
            font-weight: 800;
            color: #adb5bd;
            min-width: 30px;
        }

        /* Avatar with Glow Effect */
        .avatar-wrapper {
            position: relative;
            padding: 2px;
            background: linear-gradient(45deg, #3498db, #8e44ad);
            border-radius: 50%;
        }
        .avatar-img {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 2px solid #fff;
            object-fit: cover;
        }
        .status-dot {
            height: 14px;
            width: 14px;
            background-color: #2ecc71; /* Green for online */
            border: 2.5px solid #fff;
            border-radius: 50%;
            position: absolute;
            bottom: 2px;
            right: 2px;
        }

        /* Typography & Badges */
        .username { color: #2c3e50; font-weight: 700; font-size: 1.05rem; transition: color 0.2s; }
        .username:hover { color: #3498db; }
        
        .stat-label { font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; }
        .stat-value { font-size: 0.95rem; color: #1e293b; font-weight: 600; }

        .rating-chip {
            background: #fffbeb;
            color: #92400e;
            padding: 4px 12px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.85rem;
            border: 1px solid #fef3c7;
        }

        /* Overlapping Badges */
        .badge-stack img {
            width: 28px;
            height: 28px;
            margin-left: -8px;
            border: 2px solid #fff;
            border-radius: 50%;
            background: #f8fafc;
        }
        .badge-stack img:first-child { margin-left: 0; }

        /* Action Button */
        .btn-action {
            background-color: #f1f5f9;
            color: #475569;
            border: none;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 12px;
            transition: all 0.2s;
        }
        .btn-action:hover { background-color: #3498db; color: white; }
    </style>

        <style>
 
        
        /* Custom Radio Styling */
        .service-option { display: none; }
        .service-label {
            display: block;
            text-decoration: none;
            padding: 20px;
            background: white;
            border: 2px solid transparent;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-bottom: 15px;
        }
        .service-label:hover { border-color: #d1d9ff; }
 
        .service-option:checked + .service-label {
            border-color: var(--primary-bold);
            background-color: var(--primary-soft);
        }
        .service-option:checked + .service-label i { color: var(--primary-bold) !important; }
        
        .form-section {
            background: white;
            border-radius: 16px;
            padding: 30px;
 
        }
        .sticky-sidebar { position: sticky; top: 20px; }



        
        /* Header Section */
        .profile-card { border: none; border-radius: 15px; overflow: hidden; }
        .banner-img { height: 20px; object-fit: cover; width: 100%; background: red;}
        .profile-header { margin-top: -60px; position: relative; z-index: 2; }
  
        span a{
            text-decoration: none;
        }
        
        /* Table Customization */
        .order-card { border-radius: 15px; border: none; }
        .table thead { background-color: #fcfcfc; border-bottom: 2px solid #eee; }
        .status-pill { border-radius: 20px; padding: 4px 12px; font-size: 0.85rem; font-weight: 500; }
        
        /* Matching the "orange" accent from your image */
        .text-accent { color: #ff5a3d; }
        .section-tab { border-left: 4px solid #ff5a3d; padding-left: 15px; font-weight: bold; }


        
        .main-content {
            flex: 1;
            display: flex;
            align-items: center;
        }
        .social-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            margin: 0 5px;
            transition: opacity 0.3s;
        }
        .social-btn:hover { opacity: 0.8; color: white; }
        .bg-fb { background-color: #1877f2; }
        .bg-tw { background-color: #1da1f2; }
        .bg-li { background-color: #0077b5; }
        
        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 20px 0;
            color: #6c757d;
        }
        .divider::before, .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #dee2e6;
        }
        .divider:not(:empty)::before { margin-right: .5em; }
        .divider:not(:empty)::after { margin-left: .5em; }

   
        .footer-link { color: white; margin-left: 15px; }
        .btn-login { padding: 10px 40px; }
