﻿
        .device-info-box {
			margin-top:30px;
            background: #ffffff;
            border-radius: 15px;
                box-shadow: 0 1px 7px -3px rgb(0 0 0 / 8%);
    border: 1px solid #e7ecf0;
            padding: 25px 35px;
           
            
        }

      


        .section-title {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 28px;
            padding-bottom: 16px;
            border-bottom: 2px solid #eef2f8;
        }

        .title-icon {
            background: linear-gradient(145deg, #1e2a4a, #28375a, #1a253f);
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 28px;
            color: white;
            box-shadow: 0 6px 12px -6px rgba(37, 99, 235, 0.3);
        }

        .section-title h2 {
            font-size: 18px;
            font-weight: 700;
            color: #28375A;
            letter-spacing: -0.3px;
        }


        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px 24px;
            margin-bottom: 28px;
        }


        .info-item {
            background: #f8fafc;
            border-radius: 15px;
            padding: 16px 18px;
            transition: all 0.2s;
            border: 1px solid #eef2ff;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .info-item:hover {
            background: #ffffff;
            border-color: #cbdffc;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }

        .info-icon {
            width: 44px;
            height: 44px;
            background: #eef3ff;
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon svg {
            width: 24px;
            height: 24px;
            stroke: #28375a;
            stroke-width: 1.8;
            fill: none;
        }

        .title-icon svg {
            width: 26px;
            height: 26px;
            stroke: white;
            stroke-width: 1.8;
            fill: none;
        }

        .info-content {
            flex: 1;
        }

        .info-label {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #6B7280;
            margin-bottom: 4px;
            display: block;
        }

        .info-value {
            font-size: 14px;
            font-weight: 700;
            color: #334155;
            word-break: break-word;
            line-height: 1.4;
        }

        .full-width-item {
            grid-column: span 2;
        }

  


        @media (max-width: 640px) {

            .info-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .full-width-item {
                grid-column: span 1;
            }
            .section-title h2 {
                font-size: 16px;
            }
            .title-icon {
                width: 42px;
                height: 42px;
            }
            .info-item {
                padding: 12px 14px;
            }
            .info-value {
                font-size: 14px;
            }
            .info-icon {
                width: 38px;
                height: 38px;
            }
            .info-icon svg {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 480px) {
            .info-value { font-size: 13px;}
            
        }

        .footer-note {
            margin-top: 20px;
            text-align: left;
            font-size: 0.7rem;
            color: #8ba0bc;
            border-top: 1px solid #eef2f8;
            padding-top: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .status-chip {
            background: #fef3c7;
            color: #b45309;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .status-chip svg {
            width: 12px;
            height: 12px;
            stroke: #b45309;
            stroke-width: 2;
            fill: none;
        }
		
		
		
.best-answer-box {
background-color: #ffffff; 
border-radius: 16px; 
padding: 20px 35px; 
margin: 30px 0; 
border: 1px solid #e5e7eb; 
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.best-answer-text {
	color: #334155; 
	line-height: 1.7; 
	font-size: 13px;	
}

.best-answer-header {
display: flex; 
align-items: center; 
gap: 10px; 
margin-bottom: 15px; 
padding-bottom: 12px; 
border-bottom: 2px solid #f0f0f0;
}

.best-answer-header-title{
font-weight: bold; 
color: #28375a; 
font-size: 16px;
}

.best-answer-footer {
display: flex; 
justify-content: space-between; 
align-items: center; 
margin-top: 20px; 
padding-top: 12px; 
border-top: 1px solid #f0f0f0;
}

.best-answer-author {
	display: flex; 
	align-items: center; 
	gap: 8px;
}

.authorname {
color: #6b7280; 
font-size: 13px;
}

.date-published {
display: flex; 
align-items: center; 
gap: 5px;
}

.datecreated {
color: #6B7280; 
font-size: 13px;
}