.samane-mokatebat-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    background: #2e7d32;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.success-message {
    text-align: center;
    padding: 20px;
    background: #e8f5e9;
    border-radius: 5px;
    margin-top: 20px;
}

.success-icon {
    font-size: 40px;
    color: #2e7d32;
}

/* استایل صفحه درخواست‌ها */
.requests-search {
    margin-bottom: 20px;
}

.request-item {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tracking-code {
    background: #f5f5f5;
    padding: 5px 10px;
    border-radius: 3px;
    font-family: monospace;
}
/* استایل‌های جدید صفحه نمایش درخواست‌ها */
.samane-requests-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.requests-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.requests-header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
    font-weight: 300;
}

.requests-header p {
    margin: 0;
    font-size: 1.1em;
    opacity: 0.9;
}

.search-section {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid #eaeaea;
}

.search-box {
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.search-box input:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* استایل‌های کارت درخواست‌ها */
.approved-requests-list {
    margin-top: 30px;
}

.approved-requests-list h3 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 1.8em;
    font-weight: 300;
}

.request-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 5px solid #667eea;
}

.request-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.request-card.approved {
    border-left-color: #4CAF50;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.request-card.pending {
    border-left-color: #FF9800;
    background: linear-gradient(135deg, #fff 0%, #fff3e0 100%);
}

.request-card.rejected {
    border-left-color: #f44336;
    background: linear-gradient(135deg, #fff 0%, #ffebee 100%);
}

.request-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 30px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.request-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.4em;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-approved {
    background: #4CAF50;
    color: white;
}

.status-pending {
    background: #FF9800;
    color: white;
}

.status-rejected {
    background: #f44336;
    color: white;
}

.request-body {
    padding: 30px;
}

/* استایل جدید برای اطلاعات درخواست */
.request-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eaeaea;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row strong {
    color: #555;
    font-weight: 600;
    min-width: 120px;
}

.info-row span {
    color: #333;
    font-weight: 500;
}

/* استایل بخش محتوا */
.request-content,
.response-content {
    margin-bottom: 25px;
}

.request-content h4,
.response-content h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2em;
    border-bottom: 2px solid #667eea;
    padding-bottom: 8px;
    display: inline-block;
}

.response-content h4 {
    border-bottom-color: #4CAF50;
}

.content-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eaeaea;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

.content-box.response {
    background: #f0f9f0;
    border-color: #4CAF50;
    border-left: 4px solid #4CAF50;
}

.request-footer {
    background: #f8f9fa;
    padding: 20px 30px;
    border-top: 1px solid #eaeaea;
}

.date-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.date-item strong {
    color: #333;
}

/* استایل برای حالت‌های مختلف */
.no-results,
.welcome-message {
    text-align: center;
    padding: 60px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

.error-icon {
    font-size: 80px;
    color: #f44336;
    margin-bottom: 20px;
    opacity: 0.7;
}

.no-results h3,
.welcome-message h3 {
    color: #333;
    margin-bottom: 15px;
}

.no-results p,
.welcome-message p {
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.empty-state {
    text-align: center;
    padding: 60px 30px;
}

.empty-state h3 {
    color: #666;
    margin-bottom: 15px;
}

/* انیمیشن‌ها */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.request-card {
    animation: fadeIn 0.6s ease-out;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .samane-requests-page {
        padding: 15px;
    }

    .requests-header {
        padding: 20px;
        margin-bottom: 30px;
    }

    .requests-header h1 {
        font-size: 2em;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box input {
        font-size: 16px;
        padding: 15px;
    }

    .search-btn {
        width: 100%;
        padding: 15px;
    }

    .request-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .request-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .date-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .request-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .requests-header h1 {
        font-size: 1.6em;
    }

    .request-header h3 {
        font-size: 1.2em;
    }

    .content-box {
        padding: 15px;
    }
}