@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazir-font@v30.1.0/dist/font-face.css');

* {
    box-sizing: border-box;
    font-family: 'Vazir', Tahoma, sans-serif;
}

body {
    margin: 0;
    background: #f4f7f6;
    color: #333;
    line-height: 1.8;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 180px;
    margin-bottom: 10px;
}

h1 {
    color: #2E7D32;
    font-size: 1.8em;
    margin: 5px 0;
}

h2, h3 {
    color: #2E7D32;
    border-bottom: 2px solid #2E7D32;
    padding-bottom: 8px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

input, select, textarea, button {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

button {
    background: #2E7D32;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

button:hover {
    background: #1B5E20;
}

.success {
    color: #2E7D32;
    background: #E8F5E8;
    padding: 12px;
    border-radius: 8px;
    margin: 10px 0;
}

.error {
    color: #C62828;
    background: #FFEBEE;
    padding: 12px;
    border-radius: 8px;
    margin: 10px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th, table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
}

table th {
    background: #2E7D32;
    color: white;
}

.reply {
    background: #f9f9f9;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    border-right: 4px solid #2E7D32;
}

a {
    color: #2E7D32;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}