:root{
    --yf-bg:#f4f6f8;
    --yf-card:#ffffff;
    --yf-text:#1f2937;
    --yf-muted:#6b7280;
    --yf-border:#e5e7eb;
    --yf-dark:#111827;
    --yf-radius:16px;
    --yf-shadow:0 10px 30px rgba(0,0,0,.06);
}

html,body{
    margin:0;
    padding:0;
    background:var(--yf-bg);
    color:var(--yf-text);
    font-family:Arial, Helvetica, sans-serif;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.yf-container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:24px 15px 40px;
}

.yf-card{
    background:var(--yf-card);
    border-radius:var(--yf-radius);
    box-shadow:var(--yf-shadow);
    border:1px solid #eef0f3;
}

.yf-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:10px 16px;
    border-radius:10px;
    border:none;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    transition:.2s ease;
}

.yf-btn:hover{
    opacity:.95;
}

.yf-btn-dark{
    background:var(--yf-dark);
    color:#fff;
}

.yf-btn-light{
    background:#fff;
    color:var(--yf-dark);
    border:1px solid var(--yf-border);
}

.yf-alert{
    padding:14px 16px;
    border-radius:10px;
    margin-bottom:15px;
    font-size:14px;
}

.yf-alert-success{
    background:#eaf8ee;
    color:#166534;
    border:1px solid #ccebd5;
}

.yf-alert-error{
    background:#fdeaea;
    color:#b30000;
    border:1px solid #f5caca;
}

.yf-form-group{
    margin-bottom:16px;
}

.yf-label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
}

.yf-input,
.yf-select,
.yf-textarea{
    width:100%;
    border:1px solid #d1d5db;
    border-radius:10px;
    padding:12px 14px;
    font-size:15px;
    background:#fff;
    outline:none;
    transition:.2s ease;
    box-sizing:border-box;
}

.yf-input,
.yf-select{
    min-height:48px;
}

.yf-textarea{
    min-height:120px;
    resize:vertical;
}

.yf-input:focus,
.yf-select:focus,
.yf-textarea:focus{
    border-color:var(--yf-dark);
    box-shadow:0 0 0 3px rgba(17,24,39,.08);
}

.yf-table-wrap{
    width:100%;
    overflow:auto;
    background:#fff;
    border-radius:16px;
    box-shadow:var(--yf-shadow);
}

.yf-table{
    width:100%;
    border-collapse:collapse;
}

.yf-table th,
.yf-table td{
    padding:14px;
    border-bottom:1px solid #edf0f2;
    text-align:left;
    font-size:14px;
    vertical-align:top;
}

.yf-table th{
    background:#f8fafc;
    font-weight:700;
    color:#374151;
}

.yf-badge{
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    background:#eef2ff;
    color:#3730a3;
}

.yf-grid-2{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.yf-grid-3{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}

@media (max-width: 991px){
    .yf-grid-2,
    .yf-grid-3{
        grid-template-columns:1fr;
    }
}

.yeniform-wrap .yeniform-submit{
    min-width:170px;
    height:50px;
    padding:0 26px !important;
    border:none !important;
    border-radius:0 !important;
    background:#67b7f7 !important;
    color:#ffffff !important;
    font-size:16px !important;
    font-weight:700 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    box-shadow:none !important;
    transition:all .25s ease !important;
    cursor:pointer !important;
    text-decoration:none !important;
}

.yeniform-wrap .yeniform-submit:hover{
    background:#56aaf0 !important;
    color:#ffffff !important;
    transform:none !important;
    box-shadow:none !important;
}

.yeniform-wrap .yeniform-submit:focus{
    outline:none !important;
    color:#ffffff !important;
}

.yeniform-wrap .yeniform-submit span{
    color:#ffffff !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    line-height:1 !important;
}

.yeniform-wrap .yeniform-submit::after{
    content:"\2192";
    display:inline-block;
    margin-left:10px;
    font-size:18px;
    line-height:1;
    color:#ffffff;
    font-weight:700;
}

@media (max-width: 767px){
    .yeniform-wrap .yeniform-submit{
        width:100% !important;
        min-width:100% !important;
    }
}