
        .page-box{
        
        max-width:1100px;
        margin:20px auto;
        
        }
        
        .card{
        
        background:white;
        padding:18px;
        border-radius:6px;
        box-shadow:0 2px 6px rgba(0,0,0,0.06);
        
        }
        
        .title{
        
        font-size:18px;
        font-weight:600;
        margin-bottom:12px;
        
        }
        
        .top-bar{
        
        display:flex;
        justify-content:space-between;
        margin-bottom:12px;
        
        }
        
        /* .btn{
        
        padding:6px 12px;
        border:none;
        border-radius:4px;
        font-size:13px;
        
        } */
        
        .btn-add{
        
        background:#2563eb;
        color:white;
        
        }
        
        .btn-edit{
        
        background:#f59e0b;
        color:white;
        
        }
        
        .btn-delete{
        
        background:#dc2626;
        color:white;
        
        }
        
        .search{
        
        padding:6px 10px;
        border:1px solid #ccc;
        border-radius:4px;
        font-size:13px;
        width:220px;
        
        }
        
        .table{
        
        width:100%;
        border-collapse:collapse;
        font-size:13px;
        
        }
        
        .table th{
        
        background:#f1f5f9;
        padding:7px;
        border:1px solid #e5e7eb;
        text-align:left;
        
        }
        
        .table td{
        
        padding:7px;
        border:1px solid #e5e7eb;
        
        }



         /* Base Container */
        .card-box {
            max-width: 650px;
            width: 95%;
            margin: 40px auto;
            background: #ffffff;
            padding: 32px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            box-sizing: border-box;
        }

        /* Header Section */
        .header {
            text-align: center;
            margin-bottom: 28px;
        }

        .title {
            font-size: 24px;
            font-weight: 700;
            color: #111827;
            margin: 0 0 6px 0;
        }

        .subtitle {
            font-size: 14px;
            color: #6b7280;
            margin: 0;
        }

        /* Grid Layout */
        .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px 16px;
        }

        /* Full width for specific fields */
        .col-span-2 {
            grid-column: span 2;
        }

        /* Make it 1 column on mobile */
        @media (max-width: 600px) {
            .grid {
                grid-template-columns: 1fr;
            }
            .col-span-2 {
                grid-column: span 1;
            }
        }

        /* Form Elements */
        .input-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .label {
            font-size: 13px;
            font-weight: 600;
            color: #374151;
        }

        .required {
            color: #ef4444;
            margin-left: 2px;
        }

        .input {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 14px;
            color: #1f2937;
            background-color: #f9fafb;
            transition: all 0.2s ease-in-out;
            box-sizing: border-box;
        }

        .input:focus {
            outline: none;
            background-color: #ffffff;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
        }

        .divider {
            grid-column: 1 / -1;
            height: 1px;
            background: #e5e7eb;
            margin: 8px 0;
        }

        /* Buttons Section */
        .form-actions {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid #e5e7eb;
        }

        /* .btn {
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        } */

        .btn-save {
            background: #16a34a;
            color: white;
            border: 1px solid transparent;
        }

        .btn-save:hover {
            background: #15803d;
            box-shadow: 0 4px 6px rgba(22, 163, 74, 0.2);
        }

        .btn-back {
            background: #ffffff;
            color: #374151;
            border: 1px solid #d1d5db;
        }

        .btn-back:hover {
            background: #f3f4f6;
            color: #111827;
        }
        .sm\:max-w-md{
            max-width:100%!important;
            margin: 0;
        }
  


         .form-box{
        
        max-width:550px;
        margin:25px auto;
        
        }
        
        .card{
        
        background:white;
        padding:20px;
        border-radius:6px;
        box-shadow:0 2px 6px rgba(0,0,0,0.06);
        
        }
        
        .title{
        
        font-size:18px;
        font-weight:600;
        margin-bottom:15px;
        
        }
        
        .grid{
        
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:10px;
        
        }
        
        .label{
        
        font-size:13px;
        margin-bottom:3px;
        display:block;
        
        }
        
        .input{
        
        width:100%;
        padding:7px 10px;
        border:1px solid #ccc;
        border-radius:4px;
        font-size:13px;
        
        }
        
        .btn{
        
        padding:7px 14px;
        border:none;
        border-radius:4px;
        font-size:13px;
        margin-top:12px;
        
        }
        
        .btn-save{
        
        background:#16a34a;
        color:white;
        
        }
        
        .btn-back{
        
        background:#6b7280;
        color:white;
        margin-left:5px;
        
        }