/* Unique CSS for Village 481 GB - Purple & Rose Theme */

.v481_layout {
    background-color: #f9f6f9;
    direction: rtl;
    text-align: right;
    line-height: 1.5;
}

/* Compact Header for Mobile Optimization */
.v481_header {
    background: #4b0082; /* Indigo/Purple */
    color: #ffffff;
    padding: 7px 12px;
    border-bottom: 3px solid #e0ac69; /* Rose Gold/Bronze */
}

.v481_h_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v481_h1 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: bold;
    color: #ffffff;
}

.v481_badge {
    background: #e0ac69;
    color: #4b0082;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
}

/* Container Body */
.v481_body {
    padding: 8px;
    max-width: 600px;
    margin: 0 auto;
}

/* Action Button */
.v481_map_btn {
    display: block;
    background: #ffffff;
    color: #4b0082 !important;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    border: 1px solid #4b0082;
    margin-bottom: 10px;
    box-shadow: 0 3px 0 #e0ac69;
}

/* Card Styling */
.v481_card {
    background: #ffffff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.v481_accent_bg {
    background: #fdfafb;
    border-right: 4px solid #4b0082;
}

.v481_h2 {
    font-size: 0.85rem;
    color: #4b0082;
    margin: 0 0 8px 0;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 4px;
    font-weight: bold;
}

.v481_text p {
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 8px;
}

/* Notable People Section */
.v481_notables {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v481_person {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 6px;
    border-radius: 5px;
    border: 1px solid #f2edf2;
}

.v481_circle {
    width: 32px;
    height: 32px;
    background: #4b0082;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    margin-left: 10px;
}

.v481_p_data strong {
    display: block;
    font-size: 0.8rem;
    color: #4b0082;
}

.v481_p_data small {
    font-size: 0.7rem;
    color: #666;
}

/* Responsive Desktop Tweak */
@media (min-width: 768px) {
    .v481_notables { flex-direction: row; }
    .v481_person { flex: 1; }
}