/**
 * Theme Name:     Listeo Child
 * Author:         Purethemes.me
 * Template:       listeo
 * Text Domain:	   listeo-child
 * Description:    Directory WordPress Theme by Purethemes
 */
/* Fugitive-specific styles */
.fugitive-card {
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    position: relative;
}

.fugitive-card.high {
    border-color: #dc3545;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.3);
}

.danger-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #dc3545;
    color: white;
    text-align: center;
    padding: 5px;
    font-weight: bold;
    z-index: 10;
}

.bond-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.fugitive-stats-bar {
    display: flex;
    justify-content: space-around;
    background: #f8f9fa;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.fugitive-stats-bar .stat {
    text-align: center;
}

.fugitive-stats-bar label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.fugitive-stats-bar span {
    font-size: 18px;
    font-weight: bold;
}

/* Tip form styling */
.tip-submission-box {
    background: #e3f2fd;
    padding: 30px;
    border-radius: 5px;
    margin: 30px 0;
}

.tip-submission-box h3 {
    margin-top: 0;
    color: #1976d2;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .fugitive-stats-bar {
        flex-direction: column;
    }
    
    .fugitive-stats-bar .stat {
        margin-bottom: 15px;
    }
}