.note-fields-container {
    margin-top: 20px;
    max-width: 800px;
}

.add-field-button {
    margin: 20px 0;
}

.field-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.field-row input.field-title {
    flex: 2;
    min-width: 200px;
}

.field-row select.field-type {
    flex: 1;
    min-width: 150px;
}

.field-row button {
    margin-left: 5px !important;
}

.field-row .delete-field {
    color: #dc3232;
}

#fields-list {
    margin-top: 20px;
}

/* Notes Buttons Shortcode Styles */
.os-notes-buttons {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.os-notes-buttons .latepoint-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.os-notes-buttons .latepoint-btn-secondary {
    background-color: #f0f0f0;
    color: #666;
    border: 1px solid #ddd;
}

.os-notes-buttons .latepoint-btn-secondary:hover {
    background-color: #e4e4e4;
    color: #333;
}

.os-notes-buttons .latepoint-icon {
    font-size: 16px;
}

.os-notes-buttons .os-notes-count {
    position: absolute;
    top: -8px;
    right: -8px;
    color: #0b7b57;
    background-color: #e5fff3;
    border: 1px solid #33cb8e;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 11px;
    min-width: 16px;
    text-align: center;
    line-height: 1;
    font-weight: bold;
}

.os-notes-error {
    color: #e35b5b;
    font-size: 14px;
    padding: 5px 0;
} 