.sip-form {
    margin: 30px auto;
    text-align: center;
    max-width: 400px;
    font-family: 'Vazir', sans-serif;
	 
}

.sip-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 17px;
    color: #333;
}

.sip-form input[type="text"] {
    padding: 12px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #bbb;
    border-radius: 8px;
    margin-bottom: 15px;
}

.sip-form button {
    padding: 12px 25px;
    font-size: 16px;
    background-color: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sip-form button:hover {
    background-color: #0097a7;
}

.sip-result {
    margin: 30px auto;
    max-width: 500px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-family: 'Vazir', sans-serif;
}

.sip-result h3 {
    text-align: center;
    color: #004c56;
    margin-bottom: 20px;
}

.student-field {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    font-size: 15px;
}

.student-field:last-child {
    border-bottom: none;
}

.student-field strong {
    color: #333;
}

@media (max-width: 600px) {
    .sip-form, .sip-result {
        padding: 10px;
        width: 95%;
    }

    .student-field {
        flex-direction: column;
        text-align: right;
    }
}

@media print {
    body * {
        visibility: hidden;
    }
    .sip-result, .sip-result * {
        visibility: visible;
    }
    .sip-result {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    .sip-form, .sip-actions {
        display: none;
    }
}
