@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn/Vazirmatn-font-face.css');

/* بدنه اصلی */
body {
    font-family: 'Vazirmatn', sans-serif;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    margin: 0;
    padding: 0;
    color: #333;
}

/* منو ناوبری */
nav {
    background-color: #2c3e50;
    padding: 10px 20px;
    display: flex;
    gap: 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* ساختار اصلی */
.container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

h1 {
    font-size: 28px;
    color: #34495e;
}

h2 {
    font-size: 22px;
    margin-top: 30px;
    color: #2c3e50;
}

/* فرم‌ها */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form label {
    font-weight: bold;
}

form input,
form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Vazirmatn', sans-serif;
}

form button {
    padding: 12px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #2980b9;
}

/* کارت تیکت‌ها */
.ticket {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.ticket h3 {
    margin: 0 0 10px 0;
}

.ticket.pending {
    border-left: 5px solid #f39c12;
}

.ticket.resolved {
    border-left: 5px solid #2ecc71;
}

.ticket.closed {
    border-left: 5px solid #e74c3c;
}

.ticket p {
    margin: 5px 0;
}

.ticket small {
    color: #888;
}



body {
    font-family: Vazirmatn, sans-serif;
    margin: 0;
    padding: 0;
    background: #e3f2fd; /* رنگ آبی ملایم */
    transition: background 0.3s ease;
}
