.angie-opp-fields-wrapper {
    font-family: 'Manrope', sans-serif;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Accordion */
.angie-accordion {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.angie-accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.angie-accordion-item:last-child {
    border-bottom: none;
}

.angie-accordion-header {
    background: #f9f9f9;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.angie-accordion-header:hover {
    background: #f0f0f0;
}

.angie-accordion-content {
    padding: 20px;
    display: none;
    background: #fff;
}

.angie-accordion-content.active {
    display: block;
}

.angie-toggle-icon {
    font-weight: bold;
    font-size: 1.2em;
}

/* Field Rows - 2 Column Layout */
.angie-field-row {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
    display: flex; /* Flexbox for columns */
    flex-wrap: wrap; /* Allow wrapping on small screens */
    align-items: baseline; /* Align items to baseline of text */
}

.angie-field-row:last-child {
    border-bottom: none;
}

.angie-field-label {
    font-size: 0.85em;
    text-transform: uppercase;
    color: #777;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    width: 30%; /* Column 1 width */
    min-width: 150px; /* Minimum width for label */
    padding-right: 20px; /* Spacing between columns */
    font-weight: 600;
}

.angie-field-value {
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
    width: 70%; /* Column 2 width */
    flex: 1; /* Allow value to take remaining space */
}

/* Responsive adjustment for mobile */
@media (max-width: 600px) {
    .angie-field-row {
        display: block; /* Stack on mobile */
    }
    .angie-field-label {
        width: 100%;
        margin-bottom: 8px;
    }
    .angie-field-value {
        width: 100%;
    }
}

/* Gallery */
.angie-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.angie-gallery-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

/* Relationships */
.angie-rel-list, .angie-group-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.angie-rel-list li {
    margin-bottom: 5px;
}

.angie-rel-list a {
    color: #00B1EB;
    text-decoration: none;
    font-weight: 500;
}

.angie-rel-list a:hover {
    text-decoration: underline;
}

/* Tabs fallback styling */
.angie-tab-section {
    margin-top: 20px;
    padding: 15px;
    background: #fcfcfc;
    border-radius: 4px;
}

.angie-tab-title {
    margin-top: 0;
    font-size: 1.2em;
    border-bottom: 2px solid #00B1EB;
    padding-bottom: 8px;
    display: inline-block;
    margin-bottom: 15px;
}
