/* Trust Score Checker Specific Styles */
.tool-container {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
}

.trust-score-display {
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    background: conic-gradient(
        #28a745 var(--score-percent, 0%), 
        #e9ecef var(--score-percent, 0%) 100%
    );
}

.score-circle::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: white;
}

.score-circle span {
    z-index: 1;
}

.factor-item {
    padding: 0.75rem;
    background-color: white;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    height: 100%;
}

.factor-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.factor-score {
    font-size: 0.8rem;
}

.trust-guide .badge {
    width: 60px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .score-circle {
        width: 120px;
        height: 120px;
        font-size: 2rem;
    }
    
    .score-circle::before {
        width: 100px;
        height: 100px;
    }
}

/* Animation for score display */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.score-circle {
    animation: pulse 1s ease-in-out;
}

/* Print styles */
@media print {
    .tool-container {
        background-color: white;
    }
    
    .btn, .input-group-text {
        display: none;
    }
    
    #websiteUrl {
        border: 1px solid #ccc;
        padding: 0.375rem 0.75rem;
    }
}