@import url('fonts.css');

:root {
    --main-font: 'IRANYekanX' ;
    --color-main: #007AFF ;
    --color-background: #F9F9F9 ;
    --color-secondary: #F2F2F7 ;
}

body {
    font-family: var(--main-font) !important;
    direction: rtl;
    background-color: #fff;
    margin: 0;
}

.bg-sec
{
    background-color: var(--color-secondary) !important;
}

h1, h2, h3, h4, h5, h6, input, textarea {
    font-family: var(--main-font) !important;
}

a {
    text-decoration: none !important;
}

.ltr {
    direction: ltr;
}

/* Text */
.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}


/* Font Weight */
.fw-100 {
    font-weight: 100 !important;
}
.fw-200 {
    font-weight: 200 !important;
}
.fw-300 {
    font-weight: 300 !important;
}
.fw-400 {
    font-weight: 400 !important;
}
.fw-500 {
    font-weight: 500 !important;
}
.fw-600 {
    font-weight: 600 !important;
}
.fw-700 {
    font-weight: 700 !important;
}
.fw-800 {
    font-weight: 800 !important;
}
.fw-900 {
    font-weight: 900 !important;
}
.fw-1000 {
    font-weight: 1000 !important;
}


/* Btn App */
.app-btn {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
}
.app-btn:active {
    transform: scale(0.96);
}
.app-btn-secondary {
    background: var(--color-secondary);
    color: #000000;
}
.app-btn-secondary:active {
    background: #E5E5EA;
}
.app-btn-main {
    background: var(--color-main);
    color: white;
}
.app-btn-main:active {
    background: #0051D5;
}

/* Form App */
.app-form-group {
    margin-bottom: 16px;
}
.app-form-label {
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    font-size: 13px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.app-form-control {
    border: none;
    border-radius: 12px;
    padding: 16px 16px;
    font-size: 17px;
    background: #F2F2F7;
    color: #000000;
    transition: all 0.2s ease;
}
.app-form-control:focus {
    background: #E5E5EA;
    box-shadow: none;
    outline: none;
}
.app-form-control::placeholder {
    color: #C7C7CC;
}


/* Badge App */
.app-badge {
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.app-badge.premium {
    background: rgba(255, 204, 0, 0.15);
    color: #FFCC00;
}
.app-badge.verified {
    background: rgba(52, 199, 89, 0.15);
    color: #34C759;
}

/* Table */
.table td, .table th {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}
.table td {
    white-space: nowrap;
}