 .image-option:hover {
     border-color: #0073aa;
     transform: scale(1.02);
 }

 .image-option input[type="radio"] {
     display: none;
 }

 .image-option input[type="radio"]:checked {
     border-color: #0073aa;
     background: #f0f8ff;
 }

 .image-option img {
     width: 100%;
     max-width: 120px;
     height: auto;
     border-radius: 4px;
     margin-bottom: 10px;
 }



 .test-navigation button {
     padding: 12px 25px;
     border: none;
     border-radius: 6px;
     cursor: pointer;
     font-size: 16px;
     font-weight: bold;
     transition: all 0.3s ease;
 }

 .btn-prev {
     background: #6c757d;
     color: white;
 }

 .btn-prev:hover {
     background: #545b62;
 }

 .btn-save {
     background: #28a745;
     color: white;
 }

 .btn-save:hover {
     background: #218838;
 }

 .btn-next {
     background: #007bff;
     color: white;
 }

 .btn-next:hover {
     background: #0056b3;
 }

 .btn-submit {
     background: #dc3545;
     color: white;
 }

 .btn-submit:hover {
     background: #c82333;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .test-list {
         grid-template-columns: 1fr;
     }

     .likert-scale {
         flex-direction: column;
     }

     .test-navigation {
         flex-direction: column;
     }

     .psych-test-wrapper {
         margin: 10px;
     }

     .test-content {
         padding: 20px;
     }
 }

 /* استایل‌های کلی تست‌های روانشناسی */
 /* استایل‌های کلی */
 .psychology-tests-dashboard {
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px;
     font-family: 'Tahoma', 'Arial', sans-serif;
     direction: rtl;
 }

 .dashboard-header {
     text-align: center;
     margin-bottom: 40px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     padding: 40px 20px;
     border-radius: 12px;
 }

 .dashboard-header h1 {
     margin: 0 0 10px 0;
     font-size: 2.5rem;
     font-weight: 700;
 }

 .tests-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 25px;
     margin-top: 30px;
 }

 .test-card {
     background: white;
     border-radius: 12px;
     padding: 25px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     border: 2px solid transparent;
     text-align: center;
 }

 .test-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
 }

 .test-card.enabled {
     border-color: #e3f2fd;
 }

 .test-card.disabled {
     opacity: 0.7;
 }

 .test-icon {
     font-size: 3rem;
     margin-bottom: 15px;
 }

 .test-title {
     color: #2c3338;
     margin-bottom: 10px;
     font-size: 1.3rem;
     font-weight: 600;
 }

 .test-description {
     color: #646970;
     margin-bottom: 15px;
     line-height: 1.5;
 }

 .test-meta {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-bottom: 15px;
     justify-content: center;
 }

 .meta-item {
     background: #f8f9fa;
     padding: 4px 8px;
     border-radius: 12px;
     font-size: 0.85rem;
     color: #495057;
 }

 .test-status {
     margin-bottom: 20px;
 }

 .status-badge {
     padding: 4px 12px;
     border-radius: 15px;
     font-size: 0.8rem;
     font-weight: 600;
     text-transform: uppercase;
 }

 .status-active {
     background: #d4edda;
     color: #155724;
 }

 .status-development {
     background: #fff3cd;
     color: #856404;
 }

 .status-inactive {
     background: #f8d7da;
     color: #721c24;
 }

 .test-actions {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
     justify-content: center;
 }

 .btn-start {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     border: none;
     padding: 12px 20px;
     border-radius: 8px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .btn-start:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
     color: white;
 }

 .btn-info {
     background: #f8f9fa;
     color: #495057;
     text-decoration: none;
     padding: 12px 20px;
     border-radius: 8px;
     font-weight: 500;
     transition: all 0.3s ease;
     display: inline-block;
 }

 .btn-info:hover {
     background: #e9ecef;
     color: #495057;
 }

 .btn-disabled {
     background: #e9ecef;
     color: #6c757d;
     padding: 12px 20px;
     border-radius: 8px;
     cursor: not-allowed;
 }

 .no-tests {
     text-align: center;
     padding: 60px 20px;
     background: white;
     border-radius: 12px;
     color: #646970;
 }

 /* استایل‌های تست */
 .test-info-page {
     max-width: 800px;
     margin: 0 auto;
     padding: 20px;
     background: white;
     border-radius: 12px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
 }

 .test-header h1 {
     color: #2c3338;
     margin-bottom: 15px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .test-meta {
     display: flex;
     gap: 15px;
     margin-bottom: 20px;
     flex-wrap: wrap;
 }

 .test-meta span {
     background: #f8f9fa;
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 14px;
     color: #495057;
 }

 .test-actions {
     text-align: center;
     margin-top: 30px;
 }

 .btn-start-test {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     border: none;
     padding: 15px 40px;
     border-radius: 8px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     margin-left: 10px;
 }

 .btn-start-test:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
 }

 .btn-back {
     background: #f8f9fa;
     color: #495057;
     text-decoration: none;
     padding: 15px 30px;
     border-radius: 8px;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .btn-back:hover {
     background: #e9ecef;
     color: #495057;
 }

 .test-development {
     text-align: center;
     padding: 60px 20px;
     background: #f8f9fa;
     border-radius: 12px;
     margin: 20px 0;
 }

 .test-development h3 {
     color: #2c3338;
     margin-bottom: 15px;
 }

 .important-note {
     background: #fff3cd;
     border: 1px solid #ffeaa7;
     border-radius: 8px;
     padding: 20px;
     margin: 20px 0;
 }

 .important-note h4 {
     color: #856404;
     margin-bottom: 10px;
 }

 .important-note ul {
     margin: 0;
     padding-right: 20px;
 }

 .important-note li {
     margin-bottom: 8px;
     color: #856404;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .tests-grid {
         grid-template-columns: 1fr;
     }

     .test-actions {
         flex-direction: column;
     }

     .test-meta {
         justify-content: center;
     }

     .dashboard-header h1 {
         font-size: 2rem;
     }
 }

 /* فایل assets/css/style.css */
 .psych-test-wrapper {
     font-family: 'Tahoma', Arial, sans-serif;
     direction: rtl;
     max-width: 800px;
     margin: 0 auto;
     padding: 20px;
     background: #f8f9fa;
     min-height: 100vh;
 }

 .test-header {
     text-align: center;
     margin-bottom: 30px;
     background: white;
     padding: 30px;
     border-radius: 12px;
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
 }

 .test-header h2 {
     color: #003566;
     font-size: 24px;
     margin-bottom: 15px;
 }

 .progress-bar {
     width: 100%;
     height: 8px;
     background: #e9ecef;
     border-radius: 4px;
     margin: 15px 0;
     overflow: hidden;
 }

 .progress-fill {
     height: 100%;
     background: #003566;
     border-radius: 4px;
     transition: width 0.3s ease;
 }

 .progress-text {
     color: #6c757d;
     font-size: 14px;
 }

 .question-container {
     background: white;
     padding: 30px;
     border-radius: 12px;
     margin: 20px 0;
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
 }

 .question-text {
     font-size: 18px;
     line-height: 1.6;
     margin-bottom: 20px;
     color: #333;
 }

 .answer-options {
     display: flex;
     gap: 15px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .answer-option {
     padding: 12px 24px;
     border: 2px solid #e9ecef;
     border-radius: 8px;
     background: white;
     cursor: pointer;
     transition: all 0.3s;
     font-weight: 600;
 }

 .answer-option:hover {
     border-color: #003566;
     background: #f8f9fa;
 }

 .answer-option.selected {
     background: #003566;
     color: white;
     border-color: #003566;
 }




 .nav-btn {
     padding: 12px 24px;
     border: none;
     border-radius: 8px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s;
 }

 .btn-prev {
     background: #6c757d;
     color: white;
 }

 .btn-next,
 .btn-submit {
     background: #003566;
     color: white;
 }

 .nav-btn:hover {
     transform: translateY(-1px);
     opacity: 0.9;
 }

 .loading-spinner {
     text-align: center;
     padding: 40px;
     color: #003566;
 }

 .kham {
     background-color: #FCF3F4;
     color: #C1121F;
     border-radius: 5px;
 }

 .estan {
     background-color: #F2F8F6;
     color: #014632;
     border-radius: 5px;
 }

 .nam {
     background-color: #FAFAFA;
     color: #222222;
     border-radius: 5px;
 }

 .rotbe {
     background-color: #03A678;
     color: white;
 }

 .brotbe {
     background-color: #E6F6F2;
     color: #03A678;
 }

 .text-box {
     width: 25%;
 }

 .test-right {
     color: #03A678;
 }

 .celimg {
     height: 180px;
     width: 180px;
 }