/* Bold User Metadata Plugin Styles */

.bold-user-metadata-container {
    max-width: 960px;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.bold-basic-info, .bold-stand-info, .bold-custom-metadata {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.bold-stand-info {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.bold-stand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.bold-stand-item {
    background: white;
    padding: 10px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.bold-user-meta-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.bold-user-meta-table th,
.bold-user-meta-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.bold-user-meta-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.bold-user-meta-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.bold-user-meta-table tr:hover {
    background-color: #f0f8ff;
}

.bold-gf-entry {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.bold-entry-info {
    background: #e8f5e8;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 15px;
    border-left: 4px solid #4caf50;
}

.bold-entry-fields {
    margin-top: 15px;
}

.bold-textarea-value {
    white-space: pre-wrap;
    background: #f9f9f9;
    padding: 8px;
    border-radius: 3px;
    border: 1px solid #ddd;
    display: block;
}

.bold-file-link {
    display: inline-block;
    padding: 4px 8px;
    background: #e3f2fd;
    color: #1976d2;
    text-decoration: none;
    border-radius: 3px;
    margin-right: 5px;
    margin-bottom: 3px;
}

.bold-file-link:hover {
    background: #bbdefb;
    text-decoration: none;
}

.bold-account-title {
    margin-bottom: 24px;
}

/* Responsive design */
@media (max-width: 768px) {
    .bold-stand-grid {
        grid-template-columns: 1fr;
    }
    
    .bold-user-meta-table {
        font-size: 14px;
    }
    
    .bold-user-meta-table th,
    .bold-user-meta-table td {
        padding: 6px;
    }
}
