/* SaatPro Workspace */

.spw-container{
    max-width:900px;
    margin:40px auto;
    background:#ffffff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    font-family:Arial, Helvetica, sans-serif;
}

.spw-header{
    text-align:center;
    margin-bottom:35px;
}

.spw-header h1{
    color:#0056d2;
    margin-bottom:10px;
}

.spw-header p{
    color:#666;
    font-size:16px;
}

.spw-field{
    margin-bottom:20px;
}

.spw-field label{
    display:block;
    font-weight:bold;
    margin-bottom:8px;
}

.spw-field input,
.spw-field textarea{

    width:100%;
    padding:12px;

    border:1px solid #ddd;

    border-radius:6px;

    font-size:15px;

    box-sizing:border-box;

}

.spw-field textarea{

    resize:vertical;

}

.spw-button{

    background:#0056d2;

    color:white;

    padding:14px 30px;

    border:none;

    border-radius:6px;

    cursor:pointer;

    font-size:16px;

    font-weight:bold;

}

.spw-button:hover{

    background:#003d99;

}

.spw-output{

    margin-top:50px;

    padding:30px;

    border-top:4px solid #0056d2;

    background:#f7f9fc;

}

.spw-output h2{

    color:#0056d2;

}

.spw-output h3{

    margin-top:25px;

    color:#333;

}

.spw-output p{

    line-height:1.7;

}