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

:root {
    --primary-color: #008f79;
    --primary-hover: #007563;
    --bg-color: #f8f9fa;
    --text-color: #333;
    --border-color: #e0e0e0;
    --radius: 12px;
}

body {
    font-family: 'Vazirmatn', sans-serif !important;
    background-color: var(--bg-color);
    color: var(--text-color);
    direction: rtl;
    text-align: right;
    margin: 0;
    padding-bottom: 80px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

.main-header {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: bold;
    transition: 0.3s;
}
.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    color: #fff;
}